initial commit
This commit is contained in:
parent
8d1ef972bc
commit
0019dc2b11
30 changed files with 915 additions and 970 deletions
30
lua/jenia90/core/options.lua
Normal file
30
lua/jenia90/core/options.lua
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
vim.g.netrw_liststyle = 3
|
||||
|
||||
local opt = vim.opt
|
||||
|
||||
opt.relativenumber = true
|
||||
opt.number = true
|
||||
|
||||
opt.tabstop = 4
|
||||
opt.shiftwidth = 4
|
||||
opt.expandtab = true
|
||||
opt.autoindent = true
|
||||
|
||||
opt.wrap = false
|
||||
|
||||
opt.ignorecase = true
|
||||
opt.smartcase = true
|
||||
|
||||
opt.cursorline = true
|
||||
|
||||
opt.termguicolors = true
|
||||
opt.background = 'dark'
|
||||
opt.signcolumn = 'yes'
|
||||
|
||||
opt.backspace = 'indent,eol,start'
|
||||
|
||||
opt.clipboard:append 'unnamedplus'
|
||||
|
||||
opt.splitright = true
|
||||
opt.splitbelow = true
|
||||
opt.swapfile = false
|
||||
Loading…
Add table
Add a link
Reference in a new issue