dotfiles-nvim/lua/options.lua

15 lines
441 B
Lua
Raw Normal View History

2024-10-25 11:48:49 +00:00
require "nvchad.options"
2024-11-09 14:30:08 +00:00
local o = vim.o
o.tabstop = 4 -- A TAB character looks like 4 spaces
o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
o.shiftwidth = 4 -- Number of spaces inserted when indenting
o.cursorlineopt ='both' -- to enable cursorline!
vim.filetype.add({
extension = {
lnibuild = "bash"
}
})