Adding a neovim confing that is quite nice

This commit is contained in:
Tobias Loft
2025-04-03 10:24:44 +02:00
commit d6ad21e502
10 changed files with 325 additions and 0 deletions

13
lua/tobias/set.lua Normal file
View File

@@ -0,0 +1,13 @@
vim.opt.nu = true
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.hlsearch = false
vim.opt.incsearch = true
vim.opt.scrolloff = 8