mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
Add keyseer plugin to the project by including the `jokajak/keyseer.nvim` package in the `lua/absolute/plugins/keyseer.lua` file. The plugin is configured to use the latest version available. The configuration file `lua/absolute/after/keyseer.lua` is also added, which sets up keyseer.
8 lines
133 B
Lua
8 lines
133 B
Lua
return {
|
|
"jokajak/keyseer.nvim",
|
|
version = "*",
|
|
config = function()
|
|
require("absolute.after.keyseer")
|
|
end,
|
|
}
|