diff options
| author | jdhao <jdhao@hotmail.com> | 2021-10-17 02:52:07 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-10-17 02:52:40 +0800 |
| commit | 6cc198010a4941e7aa6ebdd91221d68df74aa954 (patch) | |
| tree | ea3cafa9a3ac3c81bb5b5bfdee1fd20a326c2f08 | |
| parent | a85bebdf02b539ea263b71a0964f18d67f015b87 (diff) | |
remove registers.nvim
Which-key.nvim can show register content too, with much more features.
I found this info on https://toroid.org/modern-neovim.
| -rw-r--r-- | lua/config/registers-nvim.lua | 11 | ||||
| -rw-r--r-- | lua/plugins.lua | 3 |
2 files changed, 0 insertions, 14 deletions
diff --git a/lua/config/registers-nvim.lua b/lua/config/registers-nvim.lua deleted file mode 100644 index 4ce9f32..0000000 --- a/lua/config/registers-nvim.lua +++ /dev/null @@ -1,11 +0,0 @@ --- do not show empty registers -vim.g.registers_show_empty_registers = 0 - --- register popup window border style -vim.g.registers_window_border = 'rounded' - --- register popup window width -vim.g.registers_window_max_width = 80 - --- hide registers filled only with whitespace -vim.g.registers_hide_only_whitespace = 1 diff --git a/lua/plugins.lua b/lua/plugins.lua index 144a2b3..3c5d720 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -294,9 +294,6 @@ require("packer").startup({ -- REPL for nvim use({ "hkupty/iron.nvim", event = 'BufEnter', config = [[require('config.iron')]] }) - -- Show register content - use({"tversteeg/registers.nvim", event = 'BufEnter', config = [[require('config.registers-nvim')]]}) - -- The missing auto-completion for cmdline! use("gelguy/wilder.nvim") |
