25 lines
368 B
Lua
25 lines
368 B
Lua
|
local o = vim.opt
|
||
|
|
||
|
-- Indentation
|
||
|
o.smartindent = true
|
||
|
o.tabstop = 4
|
||
|
o.shiftwidth = 4
|
||
|
o.expandtab = true
|
||
|
o.backspace = "indent,eol,start"
|
||
|
|
||
|
-- Numbers
|
||
|
o.number = true
|
||
|
o.relativenumber = true
|
||
|
|
||
|
-- Theme
|
||
|
o.background = "dark"
|
||
|
vim.cmd("colorscheme one")
|
||
|
|
||
|
-- Misc
|
||
|
o.mouse = 'a'
|
||
|
o.linebreak = true
|
||
|
o.backup = false
|
||
|
o.swapfile = false
|
||
|
o.showmode = true
|
||
|
o.termguicolors = true
|