Skip to content

Commit 26447ae

Browse files
A-Lamiamehalter
authored andcommitted
feat: add nvim-window-picker support
1 parent f71d3e1 commit 26447ae

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

lua/astrotheme/groups/plugins/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ return {
1616
["nvim-ts-rainbow"] = "nvim-ts-rainbow",
1717
["nvim-ts-rainbow2"] = "nvim-ts-rainbow2",
1818
["nvim-web-devicons"] = "nvim-web-devicons",
19+
["nvim-window-picker"] = "nvim-window-picker",
1920
["symbols-outline.nvim"] = "symbols-outline",
2021
["telescope.nvim"] = "telescope",
2122
["vimwiki"] = "vimwiki",
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
local function callback()
2+
return {
3+
WindowPickerStatusLine = { fg = C.red, bg = C.none },
4+
WindowPickerStatusLineNC = { fg = C.red, bg = C.none },
5+
WindowPickerWinBar = { fg = C.red, bg = C.none },
6+
WindowPickerWinBarNC = { fg = C.red, bg = C.none },
7+
}
8+
end
9+
10+
return callback

0 commit comments

Comments
 (0)