feat: switch to using screen key plugin
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
return {
|
||||
"tamton-aquib/keys.nvim",
|
||||
config = function()
|
||||
require("keys").setup({
|
||||
enable_on_startup = true,
|
||||
win_opts = {
|
||||
width = 25,
|
||||
},
|
||||
})
|
||||
end,
|
||||
"NStefan002/screenkey.nvim",
|
||||
lazy = false,
|
||||
version = "*",
|
||||
config = function()
|
||||
vim.keymap.set("n", "<leader>sk", function()
|
||||
require("screenkey").toggle()
|
||||
end, { desc = "Toggle screenkey" })
|
||||
end,
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
options = { theme = "dracula" }
|
||||
options = { theme = "dracula" },
|
||||
})
|
||||
end
|
||||
end,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user