26 lines
414 B
Lua
26 lines
414 B
Lua
--Vim Commands
|
|
vim.opt.termguicolors = true
|
|
|
|
vim.opt.clipboard = "unnamedplus"
|
|
|
|
vim.opt.tabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.expandtab = true
|
|
|
|
vim.opt.number = true
|
|
vim.opt.relativenumber = true
|
|
|
|
vim.opt.scrolloff = 999
|
|
|
|
vim.opt.splitbelow = true
|
|
vim.opt.splitright = true
|
|
|
|
vim.opt.virtualedit = "block"
|
|
|
|
vim.opt.inccommand = "split"
|
|
|
|
vim.opt.ignorecase = true
|
|
|
|
vim.g.mapleader = " "
|