21 lines
378 B
Lua
21 lines
378 B
Lua
vim.opt.nu = true
|
|
vim.opt.relativenumber = true
|
|
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.laststatus = 3
|
|
vim.opt.expandtab = true
|
|
vim.opt.hlsearch = false
|
|
vim.opt.incsearch = true
|
|
|
|
vim.opt.smartindent = true
|
|
|
|
vim.opt.wrap = true
|
|
|
|
vim.opt.clipboard = "unnamedplus"
|
|
vim.opt.signcolumn = "number"
|
|
|
|
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = " "
|