2 کامیت‌ها 2f5e272c71 ... e0e147a4e2

نویسنده SHA1 پیام تاریخ
  Kyle P Davis e0e147a4e2 fix: remove nvim setup from here now that it's moved to gimme instead 3 روز پیش
  Kyle P Davis ea7215757b style: use consistent casing in CocList command mappings 4 روز پیش
2فایلهای تغییر یافته به همراه5 افزوده شده و 16 حذف شده
  1. 5 5
      .vimrc
  2. 0 11
      install.sh

+ 5 - 5
.vimrc

@@ -294,15 +294,15 @@ if executable('node')
 
 
 	" Mappings for CoCList
 	" Mappings for CoCList
 	" Show all diagnostics
 	" Show all diagnostics
-	nnoremap <silent><nowait> <space>a  :<C-u>CocList diagnostics<cr>
+	nnoremap <silent><nowait> <space>a  :<C-u>CocList diagnostics<CR>
 	" Manage extensions
 	" Manage extensions
-	nnoremap <silent><nowait> <space>e  :<C-u>CocList extensions<cr>
+	nnoremap <silent><nowait> <space>e  :<C-u>CocList extensions<CR>
 	" Show commands
 	" Show commands
-	nnoremap <silent><nowait> <space>c  :<C-u>CocList commands<cr>
+	nnoremap <silent><nowait> <space>c  :<C-u>CocList commands<CR>
 	" Find symbol of current document
 	" Find symbol of current document
-	nnoremap <silent><nowait> <space>o  :<C-u>CocList outline<cr>
+	nnoremap <silent><nowait> <space>o  :<C-u>CocList outline<CR>
 	" Search workspace symbols
 	" Search workspace symbols
-	nnoremap <silent><nowait> <space>s  :<C-u>CocList -I symbols<cr>
+	nnoremap <silent><nowait> <space>s  :<C-u>CocList -I symbols<CR>
 	" Do default action for next item
 	" Do default action for next item
 	nnoremap <silent><nowait> <space>j  :<C-u>CocNext<CR>
 	nnoremap <silent><nowait> <space>j  :<C-u>CocNext<CR>
 	" Do default action for previous item
 	" Do default action for previous item

+ 0 - 11
install.sh

@@ -39,17 +39,6 @@ link "$CMD_DIR/.profile" "$HOME/.zshrc"
 link "$CMD_DIR/.profile" "$HOME/.bashrc"
 link "$CMD_DIR/.profile" "$HOME/.bashrc"
 link "$CMD_DIR/.profile" "$HOME/.bash_profile" # certain scenarios use this one
 link "$CMD_DIR/.profile" "$HOME/.bash_profile" # certain scenarios use this one
 
 
-# setup nvim to use .vimrc
-NVIM_CFG_DIR="$HOME/config/nvim"
-if ! [ -f "$NVIM_CFG_DIR/init.vim" ]; then
-	mkdir -p "$NVIM_CFG_DIR"
-	echo "
-set runtimepath^=~/.vim runtimepath+=~/.vim/after
-let &packpath=&runtimepath
-source ~/.vimrc
-" > "$NVIM_CFG_DIR/init.vim"
-fi
-
 OS=$(uname -s)
 OS=$(uname -s)
 if [ "$OS" = "Darwin" ]; then
 if [ "$OS" = "Darwin" ]; then
 	# Enable "All Controls" for tab in: System Settings > Keyboard > Keyboard navigation
 	# Enable "All Controls" for tab in: System Settings > Keyboard > Keyboard navigation