This commit is contained in:
Nathan Lebrun
2025-07-11 18:36:55 +02:00
parent 91836e8063
commit 6fc940320c
1511 changed files with 674 additions and 102348 deletions

21
nvim/lua/options.lua Normal file
View File

@@ -0,0 +1,21 @@
require "nvchad.options"
-- add yours here!
local o = vim.o
local opt = vim.opt
o.cursorlineopt ='both'
o.expandtab = false
o.smartindent = true
o.smarttab = true
o.tabstop = 4
o.shiftwidth = 4
o.softtabstop = 0
o.relativenumber = true
o.ignorecase = true
o.smartcase = true
o.mouse = "a"
opt.fillchars = { eob = " " }
opt.whichwrap:append "<>[]hl"