nvim: theme & lazy-nvim
This commit is contained in:
14
home/programs/neovim/lua/config/options.lua
Normal file
14
home/programs/neovim/lua/config/options.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
local opt = vim.opt
|
||||
|
||||
opt.cursorline = true -- Enable highlighting of the current line
|
||||
opt.expandtab = true -- Use spaces instead of tabs
|
||||
opt.list = true -- Show some invisible characters (tabs...
|
||||
opt.mouse = "a" -- Enable mouse mode
|
||||
opt.number = true -- Print line number
|
||||
opt.relativenumber = true -- Relative line numbers
|
||||
opt.shiftround = true -- Round indent
|
||||
opt.shiftwidth = 2 -- Size of an indent
|
||||
opt.smartindent = true -- Insert indents automatically
|
||||
opt.spelllang = { "en" }
|
||||
opt.tabstop = 2 -- Number of spaces tabs count for
|
||||
|
||||
Reference in New Issue
Block a user