Updated nvchad configuration, lsp config, tree-sitter config
This commit is contained in:
parent
d96f38d3bf
commit
5fe7bcd114
3 changed files with 14 additions and 19 deletions
|
|
@ -37,6 +37,18 @@ require "options"
|
|||
require "nvchad.autocmds"
|
||||
require "mini.trailspace"
|
||||
|
||||
require"nvim-treesitter.configs".setup {
|
||||
-- A list of parser names, or "all" (the listed parsers MUST always be installed)
|
||||
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "markdown", "markdown_inline", "python" },
|
||||
|
||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||
sync_install = false,
|
||||
|
||||
-- Automatically install missing parsers when entering buffer
|
||||
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
|
||||
auto_install = true,
|
||||
}
|
||||
|
||||
vim.schedule(function()
|
||||
require "mappings"
|
||||
end)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue