mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-18 00:57:12 +00:00
Commits:
Call the new plugins
Add gruvbox colorscheme
Turn off jump on jumpable for code snippets
Add git integration
Remove unnecessary keybinds
Change keybinds for LSP functions
Turn off format on buffer write
Add plugin sources
Remove 'help' from syntax highlighting
Add transparency option
Add visible indentations
Changes to be committed:
modified: init.lua
modified: lua/colorschemes.lua
modified: lua/completions.lua
new file: lua/git-integration.lua
modified: lua/keybinds.lua
modified: lua/lsp-config.lua
modified: lua/lsp-format.lua
modified: lua/plugins.lua
modified: lua/syntax-highlight.lua
new file: lua/transparency.lua
new file: lua/visible-indents.lua
This commit is contained in:
12
lua/visible-indents.lua
Normal file
12
lua/visible-indents.lua
Normal file
@@ -0,0 +1,12 @@
|
||||
local ok, indent_blankline = pcall(require, "indent_blankline")
|
||||
if not ok then
|
||||
return
|
||||
end
|
||||
|
||||
vim.cmd([[let g:indent_blankline_char = '¦']])
|
||||
|
||||
indent_blankline.setup({
|
||||
-- for example, context is off by default, use this to turn it on
|
||||
show_current_context = true,
|
||||
show_current_context_start = true,
|
||||
})
|
||||
Reference in New Issue
Block a user