diff options
Diffstat (limited to 'nvim/lua/lemon/set.lua')
-rw-r--r-- | nvim/lua/lemon/set.lua | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/nvim/lua/lemon/set.lua b/nvim/lua/lemon/set.lua deleted file mode 100644 index 3c662a9..0000000 --- a/nvim/lua/lemon/set.lua +++ /dev/null @@ -1,44 +0,0 @@ -vim.opt.guicursor = "" - -vim.opt.nu = true -vim.opt.relativenumber = true - -vim.opt.tabstop = 4 -vim.opt.softtabstop = 4 -vim.opt.shiftwidth = 4 -vim.opt.expandtab = true -vim.opt.autoindent = true - -vim.opt.smartindent = true - -vim.opt.wrap = false - -vim.opt.swapfile = false -vim.opt.backup = false -vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" -vim.opt.undofile = true - -vim.opt.hlsearch = false -vim.opt.incsearch = true - -vim.opt.termguicolors = true - -vim.opt.scrolloff = 8 -vim.opt.signcolumn = "yes" -vim.opt.isfname:append("@-@") - -vim.opt.updatetime = 50 - -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:␣" |