nvim-config/lua/settings.lua

13 lines
179 B
Lua
Raw Normal View History

2022-02-28 03:11:17 +00:00
local set = vim.opt
set.scrolloff = 6
set.sidescrolloff = 8
set.pumheight = 10 -- popup menu height
set.number = true
set.expandtab = false
set.shiftwidth = 4
set.tabstop = 4