clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

relative lines off for MJ

+3 -1
+2
nvim-wp/lua/sspaeti/set_wp.lua
··· 25 25 --Hide tab status 26 26 vim.opt.showtabline = 1 27 27 28 + vim.opt.relativenumber = false 29 + 28 30 29 31 --enter text vertically to maximize focus on current line 30 32 vim.opt.scrolloff = 5 --default: 8
+1 -1
nvim/lua/sspaeti/set.lua
··· 11 11 vim.opt.backup = false --instead have unlimited undo's 12 12 vim.opt.clipboard = "unnamedplus" --" Copy paste between vim and everything else -> inserts all into system clipboard 13 13 14 - vim.opt.relativenumber = false 14 + vim.opt.relativenumber = true 15 15 vim.opt.number = true 16 16 vim.opt.colorcolumn = "100" 17 17