16 lines
388 B
Lua
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
|
|
]])
|