X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Fnvim%2F.config%2Fnvim%2Finit.lua;fp=stow%2Fnvim%2F.config%2Fnvim%2Finit.lua;h=9cf63999f21c6512cbd33b441f3989d7d6469b8e;hb=c14e1b16736b33e829e20a3083db38ea78cba3c0;hp=4e56abb6657d4b02d1189d273de2760b828d0243;hpb=af84f5e698403d530d9551d256fb77200436d864;p=dotfiles.git diff --git a/stow/nvim/.config/nvim/init.lua b/stow/nvim/.config/nvim/init.lua index 4e56abb..9cf6399 100644 --- a/stow/nvim/.config/nvim/init.lua +++ b/stow/nvim/.config/nvim/init.lua @@ -39,7 +39,7 @@ require('lazy').setup({ -- Useful status updates for LSP -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})` - { 'j-hui/fidget.nvim', opts = {} }, + { 'j-hui/fidget.nvim', opts = {}, tag = 'legacy' }, -- Additional lua configuration, makes nvim stuff amazing! 'folke/neodev.nvim', @@ -265,7 +265,7 @@ augroup END 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', 'typescript', 'vimdoc', 'vim', 'html', - 'c_sharp', 'perl' }, + 'c_sharp', 'perl', 'python' }, -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) auto_install = false,