Merge branch 'main' into editing-improvements

This commit is contained in:
Nick Burt 2024-02-06 18:59:50 -06:00
commit efc6f526e4
2 changed files with 28 additions and 28 deletions

View File

@ -60,14 +60,15 @@ return {
-- Enable the following language servers -- Enable the following language servers
local servers = { local servers = {
rust_analyzer = { filetypes = {'rust', 'rs'}},
tsserver = {},
lua_ls = { lua_ls = {
Lua = { Lua = {
workspace = { checkThirdParty = false }, workspace = { checkThirdParty = false },
telemetry = { enable = false }, telemetry = { enable = false },
}, },
}, },
rust_analyzer = { filetypes = { 'rust', 'rs' } },
svelte = { filetypes = { 'svelte' } },
tsserver = {},
} }
-- Setup neovim lua configuration -- Setup neovim lua configuration
@ -94,6 +95,5 @@ return {
} }
end, end,
} }
end end
} }

View File

@ -54,7 +54,7 @@ return {
vim.defer_fn(function() vim.defer_fn(function()
require('nvim-treesitter.configs').setup { require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter -- 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, auto_install = false,
sync_install = false, sync_install = false,