diff --git a/vimrc.lua b/vimrc.lua index d0c61e6..59f3873 100644 --- a/vimrc.lua +++ b/vimrc.lua @@ -32,11 +32,9 @@ require 'nvim-treesitter.configs'.setup { indent = { enable = false, disable = {} }, rainbow = { enable = true, - extended_mode = true, -- Highlight also non-parentheses delimiters, boolean or table: lang -> boolean - max_file_lines = 1000, -- Do not enable for files with more than 1000 lines, int - colors = { - '#ff0000', '#ffa500', '#ffff00', '#008000', '#0051a0', '#8003f2' - } -- table of hex strings + extended_mode = true, + max_file_lines = 1000, + colors = { '#ff0000', '#0051a0' ,'#ffa500', '#ffff00', '#008000', '#8003f2' } } } @@ -107,18 +105,18 @@ vim.api.nvim_create_autocmd('LspAttach', { end }) -vim.diagnostic.config({ virtual_text = false}) -- Turn off inline diagnostics +vim.diagnostic.config({ virtual_text = false }) -- Turn off inline diagnostics -- Show all diagnostics on current line in floating window -vim.api.nvim_set_keymap( 'n', 'd', ':lua vim.diagnostic.open_float()', opts) +vim.api.nvim_set_keymap('n', 'd', ':lua vim.diagnostic.open_float()', opts) -- Go to next diagnostic (if there are multiple on the same line, only shows -- one at a time in the floating window) -vim.api.nvim_set_keymap( 'n', 'n', ':lua vim.diagnostic.goto_next()', opts) +vim.api.nvim_set_keymap('n', 'n', ':lua vim.diagnostic.goto_next()', opts) -- Go to prev diagnostic (if there are multiple on the same line, only shows -- one at a time in the floating window) -vim.api.nvim_set_keymap( 'n', 'p', ':lua vim.diagnostic.goto_prev()', opts) +vim.api.nvim_set_keymap('n', 'p', ':lua vim.diagnostic.goto_prev()', opts) -- Use a loop to conveniently call 'setup' on multiple servers and -- map buffer local keybindings when the language server attaches