diff options
author | Joe <rrbo@proton.me> | 2023-09-22 11:20:53 +0200 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-09-22 11:20:53 +0200 |
commit | e25677cbebfa2a9e4705de3d47610cd2026d0b56 (patch) | |
tree | 924f5cda37599a221acddaa868a8f224627f6eee /.config/nvim/lua/plugs-config/startify.lua | |
parent | up (diff) | |
download | dotfiles-bsd-e25677cbebfa2a9e4705de3d47610cd2026d0b56.tar.gz dotfiles-bsd-e25677cbebfa2a9e4705de3d47610cd2026d0b56.tar.bz2 dotfiles-bsd-e25677cbebfa2a9e4705de3d47610cd2026d0b56.tar.xz dotfiles-bsd-e25677cbebfa2a9e4705de3d47610cd2026d0b56.tar.zst dotfiles-bsd-e25677cbebfa2a9e4705de3d47610cd2026d0b56.zip |
up
Diffstat (limited to '.config/nvim/lua/plugs-config/startify.lua')
-rw-r--r-- | .config/nvim/lua/plugs-config/startify.lua | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/.config/nvim/lua/plugs-config/startify.lua b/.config/nvim/lua/plugs-config/startify.lua deleted file mode 100644 index a5d3efc..0000000 --- a/.config/nvim/lua/plugs-config/startify.lua +++ /dev/null @@ -1,29 +0,0 @@ --- Startify -vim.cmd [[ -let g:startify_custom_header = startify#pad([ -\ '==========================', -\ '====== ================', -\ '======= =================', -\ '======= =================', -\ '======= ==== ==== ===', -\ '======= === == = ==', -\ '======= === = == ==', -\ '== === === = == =====', -\ '== === === = == = ==', -\ '=== ===== ==== ===', -\ '==========================', -\ ]) -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']) }, - \ ] -]] -vim.g.startify_bookmarks = { - { env = '~/.config/env' }, - { v = '~/.config/nvim/init.vim' }, - { zc = '~/.config/zsh/.zshrc' }, - { za = '~/.config/zsh/alias.zsh' }, - { gj = '~/dev/go/gojosh' }, -} |