dotfiles/dot-config/nvim/lua/options.lua
2024-11-09 19:30:08 +05:00

15 lines
441 B
Lua

require "nvchad.options"
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"
}
})