From e72bc10296c0d4c145abd69a2b00bc8aad0004bb Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Mon, 16 Jun 2025 22:53:16 -0400 Subject: reorg --- .config/nvim/lua/user/options.lua | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .config/nvim/lua/user/options.lua (limited to '.config/nvim/lua/user/options.lua') diff --git a/.config/nvim/lua/user/options.lua b/.config/nvim/lua/user/options.lua deleted file mode 100644 index 2010277..0000000 --- a/.config/nvim/lua/user/options.lua +++ /dev/null @@ -1,34 +0,0 @@ --- tabs -vim.opt.tabstop = 4 -vim.opt.shiftwidth = 0 -vim.opt.expandtab = false -vim.opt.autoindent = true -vim.opt.smartindent = true --- display cursor at front of tabs -vim.opt.list = true -vim.opt.listchars = { tab = " " } - -vim.opt.shortmess:append { s = true, I = true } - -vim.g.mapleader = ' ' -vim.g.maplocalleader = '\\' - --- line numbers -vim.opt.signcolumn="number" -vim.opt.number=true -vim.opt.fillchars:append({ eob = " " }) -vim.opt.scrolloff = 7 - -vim.opt.splitright = true - -vim.opt.cursorline = true - -vim.diagnostic.config({ - virtual_text = true, -}) - --- undo -vim.opt.swapfile = false -vim.opt.backup = false -vim.opt.undodir = os.getenv("HOME") .. "/.cache/nvim/undodir" -vim.opt.undofile = true -- cgit v1.2.3