vim stuff
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
-- Basic Neovim settings (converted from old .vimrc)
|
||||
|
||||
vim.opt.expandtab = true -- Convert tabs to spaces
|
||||
vim.opt.tabstop = 4 -- Tab width
|
||||
vim.opt.shiftwidth = 4 -- Indent width
|
||||
vim.opt.softtabstop = 4 -- Backspace behavior
|
||||
|
||||
vim.opt.number = true -- Line numbers
|
||||
vim.opt.cursorline = true -- Highlight current line
|
||||
|
||||
-- Quality of life
|
||||
vim.opt.termguicolors = true
|
||||
vim.opt.mouse = "a"
|
||||
vim.opt.ignorecase = true
|
||||
vim.opt.smartcase = true
|
||||
vim.opt.wrap = false
|
||||
vim.opt.scrolloff = 8
|
||||
vim.opt.signcolumn = "yes" -- Always show sign column
|
||||
Reference in New Issue
Block a user