dotfiles/dot-config/nvim/lua/options.lua

10 lines
409 B
Lua
Raw Normal View History

2024-10-25 11:48:49 +00:00
require "nvchad.options"
vim.o.tabstop = 4 -- A TAB character looks like 4 spaces
vim.o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
vim.o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting
-- add yours here!
-- local o = vim.o
-- o.cursorlineopt ='both' -- to enable cursorline!