diff options
| author | Xander Swan <email> | 2025-12-03 10:00:42 -0500 |
|---|---|---|
| committer | Xander Swan <email> | 2025-12-03 10:00:42 -0500 |
| commit | 9a128539e675333e7441ad893c61f8dce625f317 (patch) | |
| tree | 3b4b99678c026d2854857259a9803be68448b032 /.config/nvim/lua/opt.lua | |
| parent | b3d6b3ffb2e8fb2c2f6dca90120673f22a40b0a3 (diff) | |
Update lots and lots
Diffstat (limited to '.config/nvim/lua/opt.lua')
| -rw-r--r-- | .config/nvim/lua/opt.lua | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/.config/nvim/lua/opt.lua b/.config/nvim/lua/opt.lua deleted file mode 100644 index 446229d..0000000 --- a/.config/nvim/lua/opt.lua +++ /dev/null @@ -1,27 +0,0 @@ -vim.o.termguicolors = true -vim.o.relativenumber = true -vim.o.number = true -vim.o.cursorline = true -vim.o.cursorlineopt = "line" -vim.o.ignorecase = true -vim.o.smartcase = true -vim.o.mouse = "" -vim.o.cc = "80" -vim.o.splitright = true -vim.o.splitbelow = true -local tabwidth = 2 -vim.o.tabstop = tabwidth -vim.o.softtabstop = tabwidth -vim.o.shiftwidth = tabwidth -vim.o.expandtab = true -vim.o.wrap = false - --- Disable line numbers in terminal -vim.api.nvim_create_autocmd("TermOpen", { - callback = function() - vim.o.number = false - vim.o.relativenumber = false - end, -}) - -vim.cmd.colorscheme("mine") |
