Initial commit
This commit is contained in:
28
lua/config/options.lua
Normal file
28
lua/config/options.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
local opt = vim.opt
|
||||
|
||||
opt.termguicolors = true
|
||||
opt.number = true
|
||||
opt.relativenumber = true
|
||||
opt.tabstop = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.wrap = false
|
||||
opt.expandtab = true
|
||||
opt.smartindent = true
|
||||
opt.ignorecase = true
|
||||
opt.smartcase = true
|
||||
opt.scrolloff = 8
|
||||
opt.sidescrolloff = 8
|
||||
opt.cursorline = true
|
||||
opt.signcolumn = "yes"
|
||||
opt.splitbelow = true
|
||||
opt.splitright = true
|
||||
opt.hlsearch = true
|
||||
opt.incsearch = true
|
||||
opt.clipboard = "unnamedplus"
|
||||
opt.completeopt = "menuone,noselect"
|
||||
opt.updatetime = 50
|
||||
opt.swapfile = false
|
||||
opt.backup = false
|
||||
opt.undofile = true
|
||||
opt.splitright = true
|
||||
opt.splitbelow = true
|
||||
Reference in New Issue
Block a user