update
This commit is contained in:
16
lua/core/options.lua
Normal file
16
lua/core/options.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
-- core/options.lua
|
||||
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.termguicolors = true
|
||||
vim.opt.expandtab = false
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.tabstop = 8
|
||||
vim.opt.colorcolumn = "80"
|
||||
vim.opt.clipboard="unnamedplus"
|
||||
vim.g.mapleader = " "
|
||||
vim.opt.ignorecase = true
|
||||
vim.opt.smartcase = true
|
||||
vim.opt.clipboard = "unnamedplus"
|
||||
vim.o.undofile = true
|
||||
vim.o.undodir = vim.fn.stdpath("data") .. "/undo//"
|
||||
Reference in New Issue
Block a user