diff options
Diffstat (limited to 'neovim/lua')
| -rw-r--r-- | neovim/lua/vimrc.lua | 11 | ||||
| -rw-r--r-- | neovim/lua/vimrc/lsp.lua | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/neovim/lua/vimrc.lua b/neovim/lua/vimrc.lua index 817ec92..3a90ad9 100644 --- a/neovim/lua/vimrc.lua +++ b/neovim/lua/vimrc.lua @@ -60,11 +60,20 @@ function M.setup_treesitter() -- Using this option may slow down your editor, and you may see some duplicate highlights. -- Instead of true it can also be a list of languages }, + rainbow = { + enable = true, + -- disable = { "jsx", "cpp" }, list of languages you want to disable the plugin for + extended_mode = true, -- Also highlight non-bracket delimiters like html tags, boolean or table: lang -> boolean + max_file_lines = nil, -- Do not enable for files with more than n lines, int + -- colors = {}, -- table of hex strings + -- termcolors = {} -- table of colour name strings + }, + incremental_selection = { enable = true, }, indent = { - enable = true, + enable = false, disable = { "python", "yaml" }, }, } diff --git a/neovim/lua/vimrc/lsp.lua b/neovim/lua/vimrc/lsp.lua index b930bfa..bd3b206 100644 --- a/neovim/lua/vimrc/lsp.lua +++ b/neovim/lua/vimrc/lsp.lua @@ -205,6 +205,8 @@ function M.setup() null_ls.builtins.formatting.alejandra, -- python formatter: black null_ls.builtins.formatting.black, + -- lisp formatter + null_ls.builtins.formatting.raco_fmt } }) end |
