Everything but LSP is finished!

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-05-02 00:40:40 -05:00
parent 78f04bda73
commit e54f6ee975
23 changed files with 530 additions and 100 deletions

View file

@ -27,6 +27,9 @@ vim.opt.hlsearch = false
-- Wrap lines in files
vim.opt.wrap = true
-- Keep signcolumn on by default
vim.opt.signcolumn = "yes"
-- preseve indentation of virtual wrapped lines
vim.opt.breakindent = true
@ -49,7 +52,7 @@ vim.opt.undofile = true
-- See `:help 'list'`
-- and `:help 'listchars'`
vim.opt.list = true
vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "" }
vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "", eol = "" }
-- TODO REVISIT IF I WANT THESE
-- Search settings