Compare commits

...

2 commits

Author SHA1 Message Date
043be7af96
[nvim] Add license injector plugin. 2021-07-14 22:15:03 +02:00
6136f826db
[nvim] Add toggleterm plugin. 2021-07-13 13:46:30 +02:00
2 changed files with 6 additions and 0 deletions

View file

@ -8,6 +8,8 @@ let s:ctx = g:dotfiles_plugins_list_context
" Files {{{ " Files {{{
call s:ctx.use('preservim/nerdtree') call s:ctx.use('preservim/nerdtree')
call s:ctx.use('kyazdani42/nvim-web-devicons') call s:ctx.use('kyazdani42/nvim-web-devicons')
call s:ctx.use('akinsho/nvim-toggleterm.lua')
call s:ctx.use('antoyo/vim-licenses')
" }}} " }}}
" Language specific {{{ " Language specific {{{

View file

@ -0,0 +1,4 @@
require("toggleterm").setup{
size = 15,
open_mapping = [[<C-\>]],
}