add first working draft
This commit is contained in:
commit
c591c88f43
13 changed files with 179 additions and 0 deletions
24
lua/weeheavy/prefs.lua
Normal file
24
lua/weeheavy/prefs.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue