diff options
Diffstat (limited to '')
| -rw-r--r-- | .config/nvim/plug-config/floaterm.vim | 18 | ||||
| -rw-r--r-- | .config/zsh/alias.zsh | 4 | 
2 files changed, 19 insertions, 3 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' +			\ ] diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 568aacc..79e62cb 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -25,13 +25,15 @@ alias mv='mv -iv'  alias rm='rm -v'  alias ln='ln -v'  alias df='df -h' -alias du='du -h' +alias du='du -A -h'  alias mkdir='mkdir -v'  alias rmdir='rmdir -v'  alias chmod='chmod -v'  alias chown='chown -v'  alias mount='mount -v'  alias grep='grep --color' +alias rgrep='grep -R -n -H' +alias fsl='fossil'  alias diff='colordiff'  alias tree='tree -C'  alias yt='straw-viewer --api=auto' | 
