From 660573bcd0c645086a1ef29997432021f7d40ed3 Mon Sep 17 00:00:00 2001 From: 40DEEA <40deea@gmail.com> Date: Sun, 19 Oct 2025 16:44:00 -0700 Subject: [PATCH 1/2] Enable more lsp servers --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index b98ffc61..bb28c9e2 100644 --- a/init.lua +++ b/init.lua @@ -671,9 +671,9 @@ require('lazy').setup({ -- - settings (table): Override the default settings passed when initializing the server. -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { - -- clangd = {}, + clangd = {}, -- gopls = {}, - -- pyright = {}, + pyright = {}, -- rust_analyzer = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- From 9cc437bea1bb95c5866e2220044f0907e83b3a90 Mon Sep 17 00:00:00 2001 From: 40DEEA <40deea@gmail.com> Date: Sun, 19 Oct 2025 16:44:19 -0700 Subject: [PATCH 2/2] Enable indent_line --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index bb28c9e2..ebc51cca 100644 --- a/init.lua +++ b/init.lua @@ -974,7 +974,7 @@ require('lazy').setup({ -- Uncomment any of the lines below to enable them (you will need to restart nvim). -- -- require 'kickstart.plugins.debug', - -- require 'kickstart.plugins.indent_line', + require 'kickstart.plugins.indent_line', -- require 'kickstart.plugins.lint', -- require 'kickstart.plugins.autopairs', -- require 'kickstart.plugins.neo-tree',