diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-01 00:37:45 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-01 00:37:45 +0100 |
commit | eba3feea35b7075739a74aa84a5af314f8512f24 (patch) | |
tree | f02533daa3807f5a6e9832ac465d2c57bf9802ad /.config/nvim/plug-config/startify.vim | |
parent | Found way to commit README (diff) | |
download | dotfiles-bsd-eba3feea35b7075739a74aa84a5af314f8512f24.tar.gz dotfiles-bsd-eba3feea35b7075739a74aa84a5af314f8512f24.tar.bz2 dotfiles-bsd-eba3feea35b7075739a74aa84a5af314f8512f24.tar.xz dotfiles-bsd-eba3feea35b7075739a74aa84a5af314f8512f24.tar.zst dotfiles-bsd-eba3feea35b7075739a74aa84a5af314f8512f24.zip |
Separated git plugins configs
Diffstat (limited to '')
-rw-r--r-- | .config/nvim/plug-config/startify.vim | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.config/nvim/plug-config/startify.vim b/.config/nvim/plug-config/startify.vim new file mode 100644 index 0000000..a7c5d50 --- /dev/null +++ b/.config/nvim/plug-config/startify.vim @@ -0,0 +1,32 @@ +" Startify +let g:startify_custom_header = startify#pad([ + \ ' _____________________________________ ', + \ ' / \', + \ ' | Hi, partner, welcome_back to |', + \ ' | _ __ ___ _____ _(_)_ __ ___ |', + \ ' | | ''_ \ / _ \/ _ \ \ / / | ''_ ` _ \ |', + \ ' | | | | | __/ (_) \ V /| | | | | | | |', + \ ' | |_| |_|\___|\___/ \_/ |_|_| |_| |_| |', + \ ' \ /', + \ ' ------------------------------------- ', + \ ' \ ^__^ ', + \ ' \ (oo)\_______ ', + \ ' (__)\ )\/\ ', + \ ' ||----w | ', + \ ' || || ', + \ ]) +let g:startify_lists = [ + \ { 'type': 'sessions', 'header': startify#pad(['Sessions']) }, + \ { 'type': 'files', 'header': startify#pad(['Recent']) }, + \ { 'type': 'bookmarks', 'header': startify#pad(['Bookmarks']) }, + \ { 'type': 'commands', 'header': startify#pad(['Commands']) }, + \ ] +let g:startify_bookmarks = [ + \ { 'b': '~/.config/bspwm/bspwmrc' }, + \ { 'e': '~/.config/env' }, + \ { 'fa': '~/.config/fish/alias.fish' }, + \ { 'fc': '~/.config/fish/config.fish' }, + \ { 'v': '~/.config/nvim/init.vim' }, + \ { 'zc': '~/.config/zsh/.zshrc' }, + \ { 'za': '~/.config/zsh/alias.zsh' }, + \ ] |