Compare commits

..

No commits in common. "f5fd3fab66d82fbd4f521c9004b64c4814de67e5" and "d0df8fb585533d1bc8b0bacf4d9e6b93375a7f7c" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View File

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

View File

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