bugfix: removed bash, batch and powershell parsers and lsps

This commit is contained in:
Baipyrus 2024-01-10 11:51:02 +01:00
parent dadc78db76
commit 48aae2f6d8

View File

@ -369,7 +369,7 @@ vim.keymap.set('n', '<leader>sr', require('telescope.builtin').resume, { desc =
vim.defer_fn(function()
require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter
ensure_installed = { 'lua', 'python', 'rust', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash', 'batch', 'powershell' },
ensure_installed = { 'lua', 'python', 'rust', 'javascript', 'typescript', 'vimdoc', 'vim' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false,
@ -497,12 +497,10 @@ require('which-key').register({
require('mason').setup()
require('mason-lspconfig').setup()
-- Enable the following language servers
local servers = {
powershell_es = {},
local servers = {
rust_analyzer = {},
tsserver = {},
pyright = {},
bashls = {},
lua_ls = {
Lua = {
workspace = { checkThirdParty = false },