Skip to content

Commit 3ff398e

Browse files
committed
chore: screenkey
1 parent 42a9aae commit 3ff398e

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ typescript-language-server --stdio
1414
```
1515
or see [this](https://github.com/typescript-language-server/typescript-language-server)
1616

17+
## FYI
18+
type `:Keybinds` to see custome keybinds
19+
1720

1821
## Error
1922

lazy-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"git-conflict.nvim": { "branch": "main", "commit": "4bbfdd92d547d2862a75b4e80afaf30e73f7bbb4" },
77
"gitsigns.nvim": { "branch": "main", "commit": "4c40357994f386e72be92a46f41fc1664c84c87d" },
88
"goshot.nvim": { "branch": "main", "commit": "280304fee2da4fcfe0351ea85837085c46e3d55f" },
9-
"indentmini.nvim": { "branch": "main", "commit": "59c2be5387e3a3308bb43f07e7e39fde0628bd4d" },
109
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
1110
"lspkind.nvim": { "branch": "master", "commit": "d79a1c3299ad0ef94e255d045bed9fa26025dab6" },
1211
"lspsaga.nvim": { "branch": "main", "commit": "6063935cf68de9aa6dd79f8e1caf5df0a9385de3" },
@@ -19,6 +18,7 @@
1918
"nvim-treesitter": { "branch": "master", "commit": "1adcd5711929e44d1bc9e59fbf7d94656cf6d389" },
2019
"playground": { "branch": "master", "commit": "ba48c6a62a280eefb7c85725b0915e021a1a0749" },
2120
"plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" },
21+
"screenkey.nvim": { "branch": "main", "commit": "16390931d847b1d5d77098daccac4e55654ac9e2" },
2222
"telescope.nvim": { "branch": "master", "commit": "814f102cd1da3dc78c7d2f20f2ef3ed3cdf0e6e4" },
2323
"ts-comments.nvim": { "branch": "main", "commit": "1bd9d0ba1d8b336c3db50692ffd0955fe1bb9f0c" },
2424
"vim-test": { "branch": "master", "commit": "0f50a546aef59efe5f1301de8fa9819ecb9fd482" },

lua/zedd/plugins/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ local plugins = {
2828
require("zedd.plugins.autopairs.lazyspec"),
2929
require("zedd.plugins.screenshot.lazyspec"),
3030
require("zedd.plugins.test.lazyspec"),
31+
require("zedd.plugins.screenkey.lazyspec"),
3132
}
3233

3334
require("lazy").setup(plugins, {
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
return {
2+
"NStefan002/screenkey.nvim",
3+
cmd = "Screenkey",
4+
lazy = false,
5+
version = "*", -- or branch = "dev", to use the latest commit
6+
config = function()
7+
require("zedd.plugins.screenkey.setup")
8+
end
9+
}

lua/zedd/plugins/screenkey/setup.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
require("screenkey").setup({
2+
win_opts = {
3+
border = "none",
4+
},
5+
})

0 commit comments

Comments
 (0)