diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-07 22:39:03 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-07 22:39:03 +0100 |
commit | 0b177ea262531b3b21070126e26b12a407c287a9 (patch) | |
tree | c095f18999739a3967a797b699a2d80a62a7b46a /.config/nvim/plug-config/floaterm.vim | |
parent | gruvboxed dunst (diff) | |
download | dotfiles-bsd-0b177ea262531b3b21070126e26b12a407c287a9.tar.gz dotfiles-bsd-0b177ea262531b3b21070126e26b12a407c287a9.tar.bz2 dotfiles-bsd-0b177ea262531b3b21070126e26b12a407c287a9.tar.xz dotfiles-bsd-0b177ea262531b3b21070126e26b12a407c287a9.tar.zst dotfiles-bsd-0b177ea262531b3b21070126e26b12a407c287a9.zip |
Floaterm and aliases update
Diffstat (limited to '.config/nvim/plug-config/floaterm.vim')
-rw-r--r-- | .config/nvim/plug-config/floaterm.vim | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/.config/nvim/plug-config/floaterm.vim b/.config/nvim/plug-config/floaterm.vim index 346fddc..02dec94 100644 --- a/.config/nvim/plug-config/floaterm.vim +++ b/.config/nvim/plug-config/floaterm.vim @@ -1,6 +1,20 @@ " Floaterm let g:floaterm_autoinsert = 1 -let g:floaterm_width = 0.85 -let g:floaterm_height = 0.75 +let g:floaterm_width = 0.6 +let g:floaterm_height = 0.45 let g:floaterm_wintitle = 0 let g:floaterm_autoclose = 1 +let g:floaterm_position = 'bottom' +let g:floaterm_gitcommit = 'split' +let g:floaterm_wintype = 'floating' +let g:floaterm_rootmarkers = + \ [ + \ '.project', + \ '.git', + \ '.hg', + \ '.svn', + \ '.root', + \ '.gitignore', + \ '.fslckout', + \ '.fossil-settings' + \ ] |