Merge branch 'main' into editing-improvements
This commit is contained in:
commit
efc6f526e4
|
|
@ -60,14 +60,15 @@ return {
|
|||
|
||||
-- Enable the following language servers
|
||||
local servers = {
|
||||
rust_analyzer = { filetypes = {'rust', 'rs'}},
|
||||
tsserver = {},
|
||||
lua_ls = {
|
||||
Lua = {
|
||||
workspace = { checkThirdParty = false },
|
||||
telemetry = { enable = false },
|
||||
},
|
||||
},
|
||||
rust_analyzer = { filetypes = { 'rust', 'rs' } },
|
||||
svelte = { filetypes = { 'svelte' } },
|
||||
tsserver = {},
|
||||
}
|
||||
|
||||
-- Setup neovim lua configuration
|
||||
|
|
@ -94,6 +95,5 @@ return {
|
|||
}
|
||||
end,
|
||||
}
|
||||
|
||||
end
|
||||
}
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ return {
|
|||
vim.defer_fn(function()
|
||||
require('nvim-treesitter.configs').setup {
|
||||
-- Add languages to be installed here that you want installed for treesitter
|
||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash' },
|
||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'svelte', 'vimdoc', 'vim', 'bash' },
|
||||
|
||||
auto_install = false,
|
||||
sync_install = false,
|
||||
|
|
|
|||
Loading…
Reference in New Issue