9 lines
274 B
Lua
9 lines
274 B
Lua
-- ~/.config/nvim/init.lua
|
|
vim.o.number = true
|
|
vim.o.relativenumber = true
|
|
vim.o.clipboard = "unnamedplus"
|
|
|
|
vim.cmd [[highlight Normal guibg=NONE ctermbg=NONE]]
|
|
vim.cmd [[highlight NormalNC guibg=NONE ctermbg=NONE]]
|
|
vim.cmd [[highlight EndOfBuffer guibg=NONE ctermbg=NONE]]
|