Merge pull request #27 from SmiteshP/hop-colors

feat: hop.nvim integration
dev-doc
Pocco81 3 years ago committed by GitHub
commit 7c159c5a8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -82,6 +82,7 @@
- [Lightspeed](https://github.com/ggandor/lightspeed.nvim)
- [Nvim-ts-Rainbow](https://github.com/p00f/nvim-ts-rainbow)
- [Sneak](https://github.com/justinmk/vim-sneak)
- [Hop](https://github.com/phaazon/hop.nvim)
- [Neogit](https://github.com/TimUntersberger/neogit)
- [Indent Blankline](https://github.com/lukas-reineke/indent-blankline.nvim)
- [Kitty](https://github.com/kovidgoyal/kitty)
@ -185,6 +186,7 @@ integrations = {
markdown = false,
lightspeed = false,
ts_rainbow = false,
hop = false,
}
```
@ -241,6 +243,7 @@ catppuccino.setup(
markdown = false,
lightspeed = false,
ts_rainbow = false,
hop = false,
}
}
)
@ -301,6 +304,7 @@ catppuccino.setup(
markdown = false,
lightspeed = false,
ts_rainbow = false,
hop = false,
}
}
)

@ -43,6 +43,7 @@ config.options = {
markdown = false,
lightspeed = false,
ts_rainbow = false,
hop = false,
},
}

@ -0,0 +1,14 @@
local util = require("catppuccino.utils.util")
local M = {}
function M.get(cpt)
return {
HopNextKey = { bg = cpt.bg, fg = cpt.orange, style = "bold" },
HopNextKey1 = { bg = cpt.bg, fg = cpt.blue, style = "bold" },
HopNextKey2 = { bg = cpt.bg, fg = util.darken(cpt.blue, 0.80, cpt.bg) },
HopUnmatched = { bg = cpt.bg, fg = cpt.comment },
}
end
return M
Loading…
Cancel
Save