9 lines
258 B
Lua
9 lines
258 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 tokyonight]]
|
|
|