nvim config edits, rename 'old_configs' -> 'non-nix_configs'

This commit is contained in:
2024-11-30 20:44:44 +01:00
parent aab3736f53
commit 2ab8903697
180 changed files with 113 additions and 38 deletions
@@ -0,0 +1,31 @@
vim.opt.guicursor = ""
vim.opt.nu = true
vim.opt.rnu = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.hlsearch = false
vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.splitright = true
vim.opt.splitbelow = true
vim.opt.updatetime = 40
vim.opt.colorcolumn = ""
vim.opt.smartindent = true
vim.opt.wrap = true
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true
vim.opt.scrolloff = 8
vim.opt.updatetime = 50
vim.g.mapleader = " "