Skip to content

Commit

Permalink
feat(nvim): improve startify
Browse files Browse the repository at this point in the history
  • Loading branch information
workflow committed Dec 14, 2023
1 parent 4b55c3b commit 603b8d8
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions home/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,6 @@ in
" Open up a simple file tree
nnoremap <leader>pv :wincmd v<bar> :Ex <bar> :vertical resize 30<CR>
" Startify Settings
let g:startify_change_to_dir = 0
let g:startify_change_to_vcs_root = 1
" Diff Settings
set diffopt+=internal,algorithm:patience
Expand Down Expand Up @@ -506,7 +502,17 @@ in
vim-sleuth # Automatic shiftwidth and expandtab
vim-solidity
vimspector
vim-startify

{
plugin = vim-startify;
config = ''
let g:startify_change_to_dir = 0
let g:startify_change_to_vcs_root = 1
let g:startify_session_persistence = 1
let g:startify_bookmarks = [ {'c': '~/nixos-config/home/neovim.nix'} ]
'';
}

vim-surround
vim-test
vim-textobj-entire
Expand Down

0 comments on commit 603b8d8

Please sign in to comment.