From d16df7688e31c472e4ff14d10bd1b42fa8a0ff8b Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Fri, 27 Dec 2024 21:06:36 -0500 Subject: [PATCH] test --- init.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index ee8fbc99..47fb1e97 100644 --- a/init.lua +++ b/init.lua @@ -157,6 +157,9 @@ vim.opt.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10 +-- Tab length +vim.opt.tabstop = 4 +vim.opt.shiftwidth = 4 -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()` @@ -614,9 +617,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 --