Compare commits

..

3 Commits

Author SHA1 Message Date
171ac607c7 Disable modeline 2026-05-15 15:05:59 -04:00
b6a1b042a3 Add xxhash package requirement 2026-05-15 14:47:14 -04:00
d031d24178 Update README 2026-05-15 14:22:39 -04:00
2 changed files with 5 additions and 1 deletions

View File

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

View File

@ -9,10 +9,12 @@ vim.cmd([[runtime plugin/fzf-lua.lua]])
-- Show titlestring in GUI window title -- Show titlestring in GUI window title
vim.opt.title = true vim.opt.title = true
vim.opt.titlestring = "%t%m%r%{exists('g:project_name') ? ' : '.g:project_name : ''}" 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" vim.opt.colorcolumn = "80,120"
vim.opt.modeline = false
-- 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>]])