mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
feat(keyseer): add keyseer plugin and configuration
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.
This commit is contained in:
3
lua/absolute/after/keyseer.lua
Normal file
3
lua/absolute/after/keyseer.lua
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
local keyseer = require("keyseer")
|
||||||
|
|
||||||
|
keyseer.setup({})
|
||||||
7
lua/absolute/plugins/keyseer.lua
Normal file
7
lua/absolute/plugins/keyseer.lua
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
return {
|
||||||
|
"jokajak/keyseer.nvim",
|
||||||
|
version = "*",
|
||||||
|
config = function()
|
||||||
|
require("absolute.after.keyseer")
|
||||||
|
end,
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user