add first working draft

This commit is contained in:
Oliver Ladner 2023-11-20 22:42:11 +01:00
commit c591c88f43
13 changed files with 179 additions and 0 deletions

24
lua/weeheavy/prefs.lua Normal file
View file

@ -0,0 +1,24 @@
-- Preferences
-- Set highlight on search
vim.o.hlsearch = true
-- Make line numbers default
--vim.wo.number = true
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.signcolumn = "number"
-- Dynamic line numbers
--vim.wo.relativenumber = true
-- highlight columns
vim.o.colorcolumn= '80,120'
-- Sync clipboard between OS and Neovim.
-- Remove this option if you want your OS clipboard to remain independent.
-- See `:help 'clipboard'`
vim.o.clipboard = 'unnamedplus'
-- Always keep this amount of lines above and below the cursor
vim.opt.scrolloff = 5