Compare commits

...

2 Commits

Author SHA1 Message Date
f5fd3fab66 Document system packages to install 2026-05-15 09:48:54 -04:00
f28d8fa3b6 Set colorcolumn option 2026-05-14 15:18:09 -04:00
2 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,15 @@
# Install
- Install packages:
```
sudo pacman -S neovim neovim-qt fzf xclip
```
- `mkdir ~/.config/nvim`
- Clone (recursively!) to `~/.config/nvim` (or symlink).
- Create `~/.config/nvim/init.lua`:
vim.opt.rtp:prepend("~/.config/nvim/holtrop.nvim")
```
vim.opt.rtp:prepend("~/.config/nvim/holtrop.nvim")
```

View File

@ -12,6 +12,7 @@ vim.opt.titlestring = "%t%m%r%{exists('g:project_name') ? ' : '.g:project_name :
vim.opt.expandtab = true
vim.opt.sw = 4
vim.opt.sts = 4
vim.opt.colorcolumn = "80,120"
-- Shortcuts
vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,git_files<CR>]])