17 lines
412 B
Lua
17 lines
412 B
Lua
-- 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//"
|