diff options
| author | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
|---|---|---|
| committer | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
| commit | 6d4208a39ba4a576c310a301eb576d84eec1ddaf (patch) | |
| tree | beef17e3d6e88f08b68673d3d3e394d19639cd78 /.config/nvim/lua/set.lua | |
| parent | d0f041df4db23a512fa2d2a7c655af0b2c7e88c5 (diff) | |
Entirely new config
Diffstat (limited to '.config/nvim/lua/set.lua')
| -rw-r--r-- | .config/nvim/lua/set.lua | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/.config/nvim/lua/set.lua b/.config/nvim/lua/set.lua deleted file mode 100644 index 88816af..0000000 --- a/.config/nvim/lua/set.lua +++ /dev/null @@ -1,26 +0,0 @@ -vim.opt.number = true -vim.opt.relativenumber = true -vim.opt.cursorline = true -vim.opt.scrolloff = 4 -vim.opt.signcolumn = "yes" - -vim.opt.encoding = "utf8" -vim.opt.fileencoding = "utf8" -vim.opt.syntax = "ON" -vim.opt.termguicolors = true - -vim.opt.ignorecase = true -vim.opt.smartcase = true -vim.opt.incsearch = true - -local tabwidth = 2 -vim.opt.expandtab = true -vim.opt.shiftwidth = tabwidth -vim.opt.softtabstop = tabwidth -vim.opt.tabstop = tabwidth - -vim.opt.splitright = true -vim.opt.splitbelow = true -vim.opt.cc = "80" - -vim.opt.mouse = "" |
