diff options
author | aktersnurra <gustaf.rydholm@gmail.com> | 2021-02-07 20:35:46 +0100 |
---|---|---|
committer | aktersnurra <gustaf.rydholm@gmail.com> | 2021-02-07 20:35:46 +0100 |
commit | a29fa44b3a0bd6f726ab2e8169dec35b697b04a0 (patch) | |
tree | 49e40e6e6b5b0378ea47638f77039bb4ae4c42b5 /.config/nvim/plug-config/start-screen.vim | |
parent | 251cde74e3bdfe70776aac644ee8858515fbc55c (diff) |
neovim config added
Diffstat (limited to '.config/nvim/plug-config/start-screen.vim')
-rw-r--r-- | .config/nvim/plug-config/start-screen.vim | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.config/nvim/plug-config/start-screen.vim b/.config/nvim/plug-config/start-screen.vim new file mode 100644 index 0000000..ae39a8c --- /dev/null +++ b/.config/nvim/plug-config/start-screen.vim @@ -0,0 +1,39 @@ + +let g:startify_custom_header = [ + \ ' _ ___ ________ __ ', + \ ' / | / / | / / ____/___ ____/ /__ ', + \ ' / |/ /| | / / / / __ \/ __ / _ \', + \ ' / /| / | |/ / /___/ /_/ / /_/ / __/', + \ ' /_/ |_/ |___/\____/\____/\__,_/\___/ ', + \] + +let g:startify_session_dir = '~/.config/nvim/session' + + +let g:startify_lists = [ + \ { 'type': 'files', 'header': [' Files'] }, + \ { 'type': 'dir', 'header': [' Current Directory '. getcwd()] }, + \ { 'type': 'sessions', 'header': [' Sessions'] }, + \ { 'type': 'bookmarks', 'header': [' Bookmarks'] }, + \ ] + + +let g:startify_session_autoload = 1 +let g:startify_session_delete_buffers = 1 +let g:startify_change_to_vcs_root = 1 +let g:startify_fortune_use_unicode = 1 +let g:startify_session_persistence = 1 + +let g:webdevicons_enable_startify = 1 + +"function! StartifyEntryFormat() +" return 'WebDevIconsGetFileTypeSymbol(absolute_path) ." ". entry_path' +" endfunction + +let g:startify_bookmarks = [ + \ { 'c': '~/.config/i3/config' }, + \ { 'i': '~/.config/nvim/init.vim' }, + \ ] + +let g:startify_enable_special = 0 + |