Update .config/niri/binds.kdl

Update .config/niri/config.kdl
Update .config/niri/startup.kdl
Update .config/niri/windowrules.kdl
Update .config/nvim/lazy-lock.json
Update .config/nvim/lua/plugin/04_fzflua.lua
Update .local/bin/make-pwa
This commit is contained in:
Lewis Wynne 2025-12-10 19:45:52 +00:00
parent 0f67e6fe78
commit f452be1e6a
7 changed files with 45 additions and 28 deletions

View file

@ -1,16 +1,21 @@
return {
{
"ibhagwan/fzf-lua",
dependencies = { { "nvim-mini/mini.icons" } },
opts = {
winopts = {
preview = {
vertical = "down:65%",
flip_columns = 120,
dependencies = { { "nvim-mini/mini.icons" }, { "folke/trouble.nvim" } },
opts = function(_, _)
local config = require("fzf-lua.config")
local actions = require("trouble.sources.fzf").actions
config.defaults.actions.files["ctrl-t"] = actions.open
return {
winopts = {
preview = {
vertical = "down:65%",
flip_columns = 120,
},
},
},
files = { git_icons = true },
},
files = { git_icons = true },
}
end,
-- stylua: ignore
keys = {
{ '<leader>f"', "<cmd>FzfLua registers<CR>", mode = { "n" }, desc = "fzf registers" },