Skip to content

Commit

Permalink
chore(nvim): remove vim-plug
Browse files Browse the repository at this point in the history
We fully rely on nix for plugin management now.

topic:chorenvim-remove-vim-plug
relative:chorenvim-last-plugin-vim-textobj-argument-moved-to-nix
labels:draft
  • Loading branch information
kaihowl committed Dec 15, 2024
1 parent c82ea8e commit 7507b92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 21 deletions.
12 changes: 3 additions & 9 deletions nvim/config--nvim--init.vim.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,10 @@ endif

set completeopt=menu,menuone,noselect
set shortmess+=c
"}}}

"{{{ plugins
"
" Specify a directory for plugins
call plug#begin(stdpath('data') . '/plugged')

" the plug#end automatically calls "filetype plugin indent on" and "syntax enable"
call plug#end()
" }}}
syntax enable
filetype plugin indent on
"}}}

" {{{ early return for bootstrapping
if exists('g:first_time_startup')
Expand Down
11 changes: 0 additions & 11 deletions nvim/install.sh

This file was deleted.

2 changes: 1 addition & 1 deletion script/install
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ fi
# If there are more dependencies between installers in the future,
# this needs to be expanded.
if [[ $DOTFILES_PROFILE == minimal ]]; then
installers="./git/install.sh ./nvim/install.sh ./colors/install.sh ./zsh/install.sh ./ssh/install.sh"
installers="./git/install.sh ./colors/install.sh ./zsh/install.sh ./ssh/install.sh"
sed_replace_in_file ~/.zprofile "# dots-profile" "export DOTFILES_PROFILE=minimal # dots-profile"
else
installers=$(find . -name nix -prune -o -name install.sh -print)
Expand Down

0 comments on commit 7507b92

Please sign in to comment.