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:
David Ibia
2024-01-15 01:49:02 +01:00
parent 2342ae3f1b
commit 90154b6967
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
local keyseer = require("keyseer")
keyseer.setup({})

View File

@@ -0,0 +1,7 @@
return {
"jokajak/keyseer.nvim",
version = "*",
config = function()
require("absolute.after.keyseer")
end,
}