a bit sloppy but working
This commit is contained in:
15
lua/config/nvim-window.lua
Normal file
15
lua/config/nvim-window.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
require("nvim-window").setup({
|
||||
-- The characters available for hinting windows.
|
||||
chars = {"a", "s", "f", "g", "h", "j", "k", "l"},
|
||||
|
||||
-- A group to use for overwriting the Normal highlight group in the floating
|
||||
-- window. This can be used to change the background color.
|
||||
normal_hl = "Normal",
|
||||
|
||||
-- The highlight group to apply to the line that contains the hint characters.
|
||||
-- This is used to make them stand out more.
|
||||
hint_hl = "Bold",
|
||||
|
||||
-- The border style to use for the floating window.
|
||||
border = "single"
|
||||
})
|
Reference in New Issue
Block a user