feat(nix): add graphite

This commit is contained in:
Barrett Ruth 2026-02-15 13:34:00 -05:00
parent e1a584ecc9
commit 8ed4522da2
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
2 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ return {
local ok, fzf_reload = pcall(require, 'config.fzf_reload') local ok, fzf_reload = pcall(require, 'config.fzf_reload')
if ok then if ok then
fzf_reload.setup(opts) fzf_reload.setup(opts)
fzf_reload.reload(true) fzf_reload.reload()
end end
end, end,
keys = { keys = {

View file

@ -266,12 +266,12 @@ return {
end, end,
}, },
keymaps = { keymaps = {
['<c-h>'] = false, ['<C-h>'] = false,
['<c-t>'] = false, ['<C-t>'] = false,
['<c-l>'] = false, ['<C-l>'] = false,
['<c-r>'] = 'actions.refresh', ['<C-r>'] = 'actions.refresh',
['<c-s>'] = { 'actions.select', opts = { vertical = true } }, ['<C-s>'] = { 'actions.select', opts = { vertical = true } },
['<c-x>'] = { 'actions.select', opts = { horizontal = true } }, ['<C-x>'] = { 'actions.select', opts = { horizontal = true } },
['q'] = function() ['q'] = function()
local ok, bufremove = pcall(require, 'mini.bufremove') local ok, bufremove = pcall(require, 'mini.bufremove')
if ok then if ok then