25 lines
485 B
Lua
25 lines
485 B
Lua
vim.g.mapleader = ' '
|
|
|
|
vim.opt.termguicolors = true
|
|
|
|
vim.opt.autoindent = true
|
|
vim.opt.clipboard = 'unnamedplus'
|
|
vim.opt.mouse = 'a'
|
|
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.expandtab = true
|
|
|
|
vim.opt.number = true
|
|
vim.opt.relativenumber = true
|
|
vim.opt.cursorline = true
|
|
vim.opt.splitbelow = true
|
|
vim.opt.splitright = true
|
|
vim.opt.showmode = false
|
|
|
|
vim.opt.incsearch = true
|
|
vim.opt.hlsearch = false
|
|
vim.opt.ignorecase = true
|
|
vim.opt.smartcase = true
|
|
|