23 lines
345 B
Lua
23 lines
345 B
Lua
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = " "
|
|
|
|
vim.o.clipboard = "unnamedplus"
|
|
|
|
-- vim.o.number = true
|
|
vim.o.relativenumber = true
|
|
|
|
vim.o.signcolumn = "yes"
|
|
|
|
vim.o.tabstop = 4
|
|
vim.o.shiftwidth = 4
|
|
|
|
vim.o.updatetime = 300
|
|
|
|
vim.o.termguicolors = true
|
|
|
|
vim.o.mouse = "a"
|
|
|
|
-- disable empty line ~
|
|
vim.o.fillchars = "eob: "
|
|
|
|
vim.o.undofile = true
|