Compare commits

..

No commits in common. "d873f5ffb14a8b52ec3567865e11026e1566a403" and "79e474e8eb866e4c80494f5be40749b611650059" have entirely different histories.

3 changed files with 5 additions and 31 deletions

View File

@ -115,21 +115,10 @@ null_ls.setup({
})
-- setup lsp_lines
require("lsp_lines").setup()
-- setup vim diagnostics
local lsp_lines = require("lsp_lines")
lsp_lines.setup()
vim.diagnostic.config({
virtual_text = false,
signs = true,
update_in_insert = true,
underline = true,
severity_sort = false,
float = {
border = "rounded",
source = "always",
header = "",
prefix = "",
},
})
-- setup html languageserver

View File

@ -34,10 +34,6 @@ vim.opt.inccommand = "split"
-- completion
vim.opt.completeopt = "menu,menuone,noselect"
-- folding
vim.opt.foldmethod = "expr"
vim.opt.foldexpr = 'nvim_treesitter#foldexpr()'
-- set cursorline in active window
vim.cmd([[
augroup CursorLine
@ -55,3 +51,4 @@ vim.cmd([[
autocmd TermOpen * setlocal nonumber norelativenumber
augroup END
]])

View File

@ -1,20 +1,8 @@
require('nvim-treesitter.configs').setup({
highlight = { enable = true, additional_vim_regex_highlighting = false },
ensure_installed = {
"bash", "c", "cpp", "css", "dockerfile", "hcl", "html", "javascript",
"json", "latex", "lua", "markdown", "nix", "python", "rust", "svelte",
"toml", "tsx", "typescript", "vim", "vue", "yaml"
},
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false
},
indent = {
enable = true,
},
rainbow = {
enable = true,
extended_mode = true,
max_file_lines = nil,
},
}
})