Skip to content

Commit

Permalink
feat: Add registers.nvim plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalDevil committed Oct 29, 2023
1 parent 9e16ff3 commit d43d50f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lua/devil/configs/plugin/nvim-treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ vim.opt.foldexpr = "nvim_treesitter#foldexpr()"

-- extra treesitter
local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
parser_config.hypr = {
parser_config.hypr = { ---@diagnostic disable-line
install_info = {
url = "https://github.com/luckasRanarison/tree-sitter-hypr",
files = { "src/parser.c" },
Expand Down
11 changes: 11 additions & 0 deletions lua/devil/plugins/common.lua
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,17 @@ return {
require("devil.configs.plugin.rainbow-delimiters")
end,
},
-- registers.nvim
-- Neovim plugin to preview the contents of the registers
{
"tversteeg/registers.nvim",
name = "registers",
keys = {
{ '"', mode = { "n", "v" } },
{ "<C-R>", mode = "i" },
},
cmd = "Registers",
},
-- rest.nvim
-- A fast Neovim http client written in Lua
{
Expand Down

0 comments on commit d43d50f

Please sign in to comment.