add floaterm

This commit is contained in:
Chris 2021-03-15 01:30:59 -04:00
parent 09f46fc2a2
commit ba701db787
2 changed files with 14 additions and 0 deletions

13
lua/nv-floaterm/init.lua Normal file
View file

@ -0,0 +1,13 @@
-- Floaterm
vim.g.floaterm_keymap_toggle = '<F1>'
vim.g.floaterm_keymap_next = '<F2>'
vim.g.floaterm_keymap_prev = '<F3>'
vim.g.floaterm_keymap_new = '<F4>'
vim.g.floaterm_title=''
vim.g.floaterm_gitcommit='floaterm'
vim.g.floaterm_autoinsert=1
vim.g.floaterm_width=0.8
vim.g.floaterm_height=0.8
vim.g.floaterm_wintitle=0
vim.g.floaterm_autoclose=1

View file

@ -86,4 +86,5 @@ return require('packer').startup(function()
use { 'glacambre/firenvim', run = function() vim.fn['firenvim#install'](1) end }
use 'liuchengxu/vim-which-key'
use 'tpope/vim-sleuth'
use 'voldikss/vim-floaterm'
end)