Skip to content

Commit

Permalink
feat: fzf lua (#88)
Browse files Browse the repository at this point in the history
* feat: fzf lua

* feat: snacks dashboard dir
  • Loading branch information
gbprod authored Jan 9, 2025
1 parent b9c2935 commit fb627d2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ and [the official vscode theme](https://github.com/arcticicestudio/nord-visual-s
- [Markview](https://github.com/OXY2DEV/markview.nvim)
- [Toggleterm](https://github.com/akinsho/toggleterm.nvim)
- [Blink.cmp](https://github.com/saghen/blink.cmp)
- [fzf-lua](https://github.com/ibhagwan/fzf-lua)

Your preferred plugin is missing ? Open an issue or, even better, open a pull
request 😉.
Expand Down
13 changes: 13 additions & 0 deletions lua/nord/plugins/picker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ function picker.highlights()
TelescopeTitle = { fg = c.snow_storm.origin, bold = true },
TelescopePromptCounter = { fg = c.polar_night.light },
TelescopeMatching = { fg = c.frost.ice, bold = true },

FzfLuaBorder = { fg = c.polar_night.light, bg = utils.make_global_bg() },
FzfLuaTitle = { fg = c.snow_storm.origin, bold = true },
FzfLuaHeaderBind = { fg = c.frost.ice },
FzfLuaHeaderText = { fg = c.frost.artic_ocean },
FzfLuaPathColNr = { fg = c.frost.ice },
FzfLuaPathLineNr = { fg = c.aurora.green },
FzfLuaBufNr = { fg = c.aurora.yellow },
FzfLuaBufFlagCur = { fg = c.aurora.red },
FzfLuaBufFlagAlt = { fg = c.frost.ice },
FzfLuaTabTitle = { fg = c.frost.artic_water },
FzfLuaTabMarker = { fg = c.aurora.yellow },
FzfLuaLiveSym = { fg = c.aurora.red },
}
end

Expand Down
2 changes: 2 additions & 0 deletions lua/nord/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ function ui.highlights()
IlluminatedWordText = { fg = c.none, bg = c.polar_night.brightest },
IlluminatedWordRead = { fg = c.none, bg = c.polar_night.brightest },
IlluminatedWordWrite = { fg = c.none, bg = c.polar_night.brightest },

SnacksDashboardDir = { link = "Comment" },
}
end

Expand Down

0 comments on commit fb627d2

Please sign in to comment.