Compare commits

..

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

2 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,7 @@
- Install packages:
```
sudo pacman -S neovim neovim-qt fzf xclip xxhash
sudo pacman -S neovim neovim-qt fzf xclip
```
- `mkdir ~/.config/nvim`
@ -13,5 +13,3 @@ sudo pacman -S neovim neovim-qt fzf xclip xxhash
```
vim.opt.rtp:prepend("~/.config/nvim/holtrop.nvim")
```
- Configure Plasma application settings for nvim-qt to disable focus stealing prevention

View File

@ -9,12 +9,10 @@ vim.cmd([[runtime plugin/fzf-lua.lua]])
-- Show titlestring in GUI window title
vim.opt.title = true
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"
vim.opt.modeline = false
-- Shortcuts
vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,git_files<CR>]])