Add LSP configurations to neovim. Add conform/telescope plugins.

This commit is contained in:
2025-10-10 23:35:14 -07:00
parent e16aac3dfa
commit 1a02c0e649
10 changed files with 101 additions and 21 deletions

View File

@@ -2,7 +2,7 @@
-- See `:help vim.o`
-- Make line numbers default
vim.o.number = true
vim.o.relativenumber = true
-- Enable mouse mode, can be useful for resizing splits for example!
vim.o.mouse = 'a'
@@ -58,3 +58,10 @@ vim.o.scrolloff = 10
-- instead raise a dialog asking if you wish to save the current file(s)
-- See `:help 'confirm'`
vim.o.confirm = true
-- default tab/space configuration
vim.o.tabstop = 2
vim.o.softtabstop = 2
vim.o.shiftwidth = 2
vim.o.expandtab = true