Use files instead of git_files for <C-s>

This commit is contained in:
Josh Holtrop 2026-05-22 23:19:32 -04:00
parent 5934fc3970
commit 4979cd2b87
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
- Install packages: - Install packages:
``` ```
sudo pacman -S neovim neovim-qt fzf xclip xxhash sudo pacman -S fd fzf neovim neovim-qt xclip xxhash
``` ```
- `mkdir ~/.config/nvim` - `mkdir ~/.config/nvim`

View File

@ -21,7 +21,7 @@ vim.opt.so = 8
vim.opt.cinoptions = ":0,g0" vim.opt.cinoptions = ":0,g0"
-- Shortcuts -- Shortcuts
vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,git_files<CR>]]) vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,files<CR>]])
vim.cmd([[inoremap <C-Enter> <Esc>O]]) vim.cmd([[inoremap <C-Enter> <Esc>O]])
vim.cmd([[vnoremap < <gv]]) vim.cmd([[vnoremap < <gv]])
vim.cmd([[vnoremap > >gv]]) vim.cmd([[vnoremap > >gv]])