lua: format

This commit is contained in:
Asmir A 2024-03-16 15:22:08 +01:00
parent 9332c56c01
commit 3f9559992a
Signed by: asmir
GPG Key ID: 020C42B7A9ABA3E2

View File

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