25 lines
343 B
Lua
25 lines
343 B
Lua
-- River Rooks nvim config
|
|
|
|
-- CATAGORY: setup
|
|
-- line numbers
|
|
vim.o.number = true
|
|
-- relative numbers
|
|
vim.o.relativenumber = true
|
|
-- sync clipboard with system
|
|
vim.schedule(function()
|
|
vim.o.clipboard = 'unnamedplus'
|
|
end)
|
|
vim.cmd.colorscheme("retrobox")
|
|
|
|
-- CATAGORY:Keybinds
|
|
|
|
|
|
|
|
|
|
-- CATAGORY:scripts
|
|
|
|
|
|
|
|
|
|
-- CATAGORY:plugins
|