From 72ea4db88191c037ee4b35043eeca9df5a6a8863 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Tue, 24 Jun 2025 12:05:06 +1000 Subject: [PATCH] Change some python settings --- alex/nvim/init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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`