config.nvim/lua/core.lua

23 lines
393 B
Lua
Raw Normal View History

-- CORE SETTINGS
local o = vim.o
2021-09-14 19:58:30 +08:00
local global = vim.g
2021-09-07 23:26:21 +08:00
-- look and feel
o.termguicolors = true
o.ruler = true
o.relativenumber = true
o.number = true
o.showmode = false
o.scrolloff = 10
2021-09-07 23:26:21 +08:00
-- controlling
vim.opt.completeopt = {'menu', 'menuone', 'noselect'}
o.ignorecase = true
o.smartcase = true
o.smartindent = true
o.autoindent = true
o.mouse = "i"
2021-10-25 10:53:37 +08:00
-- leader settings
global.mapleader = ' '