diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-03-15 15:03:55 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-03-15 15:03:55 +0100 |
commit | c130f7285f250077336d0930898dbbeddb00b9f7 (patch) | |
tree | c6155f2219070ee64f3d1e2694da7afdff14a085 /config/essentials/nvim/lua/tlast/set.lua | |
parent | a328343e3f92e6c7e1a1f8069b80db698c900f8d (diff) |
chnaged tlast to 'user' to be more generic
Diffstat (limited to 'config/essentials/nvim/lua/tlast/set.lua')
-rw-r--r-- | config/essentials/nvim/lua/tlast/set.lua | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/config/essentials/nvim/lua/tlast/set.lua b/config/essentials/nvim/lua/tlast/set.lua deleted file mode 100644 index 69ee4ae..0000000 --- a/config/essentials/nvim/lua/tlast/set.lua +++ /dev/null @@ -1,43 +0,0 @@ -local opt = vim.opt - -opt.clipboard = "unnamed" - -opt.termguicolors = true - -opt.number = true -opt.relativenumber = true -opt.showmatch = true -opt.matchtime = 0 -opt.showcmd = true -opt.cursorline = true -opt.ruler = true - -opt.path:append("**") - -opt.wildmenu = true -opt.incsearch = true -opt.hlsearch = false - -opt.mouse = "" - -opt.tabstop = 4 -opt.shiftwidth = 4 -opt.backspace = "indent,eol,start" - -opt.signcolumn = "yes" -opt.updatetime = 100 -opt.laststatus = 2 -opt.history = 200 -opt.encoding = "utf-8" - -opt.smartindent = true -opt.scrolloff = 8 - -opt.ignorecase = true -opt.smartcase = true - -opt.swapfile = false -opt.backup = false - -opt.spelllang = "en_us,nl" -opt.formatoptions = "cqrnj" |