added toggleterm and whitch-key.nvim.
due to adding whitch-key.nvim, also added descs to all keybinds.
This commit is contained in:
parent
855108ffc2
commit
5f5dc76261
5 changed files with 126 additions and 62 deletions
|
@ -207,7 +207,6 @@ return require('packer').startup(function(use)
|
|||
local opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
}
|
||||
require("todo-comments").setup(opts)
|
||||
end
|
||||
|
@ -340,8 +339,37 @@ return require('packer').startup(function(use)
|
|||
end
|
||||
}
|
||||
|
||||
use {
|
||||
"folke/which-key.nvim",
|
||||
config = function()
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
-- default kemaps that whitch-key misses.
|
||||
local wk = require("which-key")
|
||||
wk.register {
|
||||
g = {
|
||||
t = "next tab",
|
||||
T = "previous tab"
|
||||
},
|
||||
}
|
||||
require("which-key").setup {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
-- local wk = require("which-key")
|
||||
}
|
||||
end
|
||||
}
|
||||
|
||||
--UI stuff
|
||||
|
||||
use { "akinsho/toggleterm.nvim", tag = '*', config = function()
|
||||
require("toggleterm").setup {
|
||||
insert_mappings = false,
|
||||
open_mapping = [[<c-\>]],
|
||||
}
|
||||
end }
|
||||
|
||||
use { 'simrat39/symbols-outline.nvim',
|
||||
config = function()
|
||||
local opts = {
|
||||
|
@ -451,7 +479,9 @@ return require('packer').startup(function(use)
|
|||
config = function() require('gitsigns').setup() end
|
||||
}
|
||||
|
||||
use 'chentau/marks.nvim'
|
||||
use { 'chentau/marks.nvim' }
|
||||
|
||||
use { 'sitiom/nvim-numbertoggle' }
|
||||
|
||||
use { 'lukas-reineke/indent-blankline.nvim',
|
||||
config = function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue