nvim/lua/core/settings.lua

9 lines
226 B
Lua
Raw Normal View History

2024-04-22 11:12:54 +00:00
-- how many spaces large a TAB character is
vim.o.tabstop=2
-- when indenting with '>', use space width
vim.o.shiftwidth=2
-- insert spaces instead of TAB character
vim.o.expandtab=true
2024-04-22 11:53:32 +00:00
vim.cmd.colorscheme "catppuccin-mocha"