Refactor neovim config #2

Merged
FunctionalHacker merged 40 commits from nvim-lua into master 2021-08-08 07:33:26 -05:00
Showing only changes of commit dceb69cf01 - Show all commits

View file

@ -1,4 +1,5 @@
local o = vim.o
local g = vim.g
local cmd = vim.cmd
------ Appearance ------
@ -24,6 +25,10 @@ cmd 'highlight SignColumn guibg=transparent'
------ Misc -------
-- Use suda by default
g.suda_smart_edit = 1
-- Split direction
o.splitbelow = true
o.splitright = true