diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-08 15:45:32 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-08 15:45:32 +0100 |
commit | 9f953b0eea5f3610cc78b7470d3030940939132d (patch) | |
tree | dfd2ddf78d2d51a8672aac87d9f6785ca64bfa17 /nvim/lua/lemon/set.lua | |
parent | 383bb5cccf8bb6879676bfac2c62b0cd1b333aff (diff) |
Moves back some of my old vim options
Tidies up some files from earlier iterations where I was basically
copying stuff from the Primeagen config.
Diffstat (limited to 'nvim/lua/lemon/set.lua')
-rw-r--r-- | nvim/lua/lemon/set.lua | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/nvim/lua/lemon/set.lua b/nvim/lua/lemon/set.lua index 18acbf1..4347474 100644 --- a/nvim/lua/lemon/set.lua +++ b/nvim/lua/lemon/set.lua @@ -28,5 +28,16 @@ vim.opt.isfname:append("@-@") vim.opt.updatetime = 50 -vim.opt.colorcolumn = "80" - +vim.opt.colorcolumn = "" + +-- end ThePrimeagen stuff + +vim.opt.wildmenu = true +vim.opt.showmatch = true +vim.opt.splitbelow = true +vim.opt.splitright = true +vim.opt.hidden = true +vim.opt.path = "+=**" +vim.opt.more = true +vim.opt.equalalways = true +vim.opt.listchars="tab:»→,trail:␣" |