Add reticle.nvim
This commit is contained in:
parent
a4d69d7cd8
commit
455e5f3cd9
14
init.lua
14
init.lua
|
@ -66,6 +66,20 @@ require('packer').startup(function(use)
|
||||||
-- Leap to help quickly navigate
|
-- Leap to help quickly navigate
|
||||||
|
|
||||||
use 'ggandor/leap.nvim'
|
use 'ggandor/leap.nvim'
|
||||||
|
|
||||||
|
|
||||||
|
-- Adds ability to highlight row and/or column containing cursor
|
||||||
|
use {
|
||||||
|
'tummetott/reticle.nvim',
|
||||||
|
config = function()
|
||||||
|
require('reticle').setup {
|
||||||
|
|
||||||
|
-- add options here or leave empty
|
||||||
|
}
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Shows what actions can be performed by pressing keys
|
||||||
use {
|
use {
|
||||||
"folke/which-key.nvim",
|
"folke/which-key.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
|
|
Loading…
Reference in New Issue