Files
dotfiles/nvim/lua/settings.lua
2025-01-28 13:42:43 +01:00

16 lines
388 B
Lua

-- Global settings
vim.opt.tabstop = 4 -- Number of spaces that a <Tab> counts for
vim.opt.shiftwidth = 4 -- Number of spaces for indentation
vim.opt.expandtab = true -- Use spaces instead of tabs
-- Coloscheme
vim.cmd [[colorscheme gruvbox]]
vim.cmd [[set spelllang=en]]
vim.cmd([[
highlight Normal ctermbg=none guibg=none
highlight NonText ctermbg=none guibg=none
]])