initial commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
local opt = vim.opt
|
||||
|
||||
opt.number = true
|
||||
opt.relativenumber = true
|
||||
opt.signcolumn = "yes"
|
||||
opt.cursorline = true
|
||||
opt.termguicolors = true
|
||||
|
||||
opt.tabstop = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.expandtab = true
|
||||
opt.smartindent = true
|
||||
|
||||
opt.wrap = false
|
||||
opt.scrolloff = 8
|
||||
|
||||
opt.ignorecase = true
|
||||
opt.smartcase = true
|
||||
|
||||
opt.splitbelow = true
|
||||
opt.splitright = true
|
||||
|
||||
opt.clipboard = "unnamedplus"
|
||||
opt.mouse = "a"
|
||||
|
||||
opt.updatetime = 250
|
||||
opt.timeoutlen = 400
|
||||
|
||||
Reference in New Issue
Block a user