summaryrefslogtreecommitdiff
path: root/plug-config/start-screen.vim
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2021-03-14 15:10:28 -0400
committerGitHub <[email protected]>2021-03-14 15:10:28 -0400
commit0dc3c5030b778d5256cad5d9529e9ecf7fbfb233 (patch)
tree420e44f62d95d138eec36baa4d1bd5b6c9390ae6 /plug-config/start-screen.vim
parentd002b0419a8621c5575c14119d0b8d9c4a7a44a0 (diff)
The Lua Journey Begins...
Diffstat (limited to 'plug-config/start-screen.vim')
-rw-r--r--plug-config/start-screen.vim39
1 files changed, 0 insertions, 39 deletions
diff --git a/plug-config/start-screen.vim b/plug-config/start-screen.vim
deleted file mode 100644
index e0e40e70..00000000
--- a/plug-config/start-screen.vim
+++ /dev/null
@@ -1,39 +0,0 @@
-
-let g:startify_custom_header = [
- \ ' _ ___ ________ __ ',
- \ ' / | / / | / / ____/___ ____/ /__ ',
- \ ' / |/ /| | / / / / __ \/ __ / _ \',
- \ ' / /| / | |/ / /___/ /_/ / /_/ / __/',
- \ ' /_/ |_/ |___/\____/\____/\__,_/\___/ ',
- \]
-
-let g:startify_session_dir = '~/.config/nvim/session'
-
-
-let g:startify_lists = [
- \ { 'type': 'files', 'header': [' Files'] },
- \ { 'type': 'sessions', 'header': [' Sessions'] },
- \ { 'type': 'bookmarks', 'header': [' Bookmarks'] },
- \ ]
- " \ { 'type': 'dir', 'header': [' Current Directory '. getcwd()] },
-
-
-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 = [
- \ { 'b': '~/Blog' },
- \ { 'i': '~/.config/nvim/init.vim' },
- \ { 'z': '~/.zshrc' },
- \ ]
-
-let g:startify_enable_special = 0