diff --git a/alex/nvim/init.lua b/alex/nvim/init.lua index 78cf7e6..c37ca3c 100644 --- a/alex/nvim/init.lua +++ b/alex/nvim/init.lua @@ -626,7 +626,7 @@ require("lazy").setup({ -- clangd = {}, -- gopls = {}, -- pylsp = {}, - -- pyright = {}, + pyright = {}, -- rust_analyzer = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- @@ -874,9 +874,9 @@ require("lazy").setup({ -- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules. -- If you are experiencing weird indenting issues, add the language to -- the list of additional_vim_regex_highlighting and disabled languages for indent. - additional_vim_regex_highlighting = { "ruby" }, + additional_vim_regex_highlighting = { "ruby", "python" }, }, - indent = { enable = false, disable = { "ruby" } }, + indent = { enable = false, disable = { "ruby", "python" } }, }, config = function(_, opts) -- [[ Configure Treesitter ]] See `:help nvim-treesitter`