kickstart.nvim/after/plugin/defaults.lua

9 lines
241 B
Lua
Raw Normal View History

2023-12-10 13:29:45 +05:30
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
vim.bo.softtabstop = 2
2023-12-12 08:46:51 +05:30
vim.opt.relativenumber = true
2023-12-12 08:46:51 +05:30
-- Set custom colorscheme [[ NOTE: Never set it to "onedark" cuz it breaks the editor ]]
vim.cmd.colorscheme 'gruvbox'