A modernized Vim configuration with carefully selected plugins and sensible defaults.
- Modern Plugin Management: Uses vim-plug for efficient plugin management
- Fuzzy Finding: Integrated FZF for fast file and buffer navigation
- Git Integration: Includes git support with fugitive and gitgutter
- Syntax Highlighting: Comprehensive language support via vim-polyglot
- File Navigation: Enhanced NERDTree setup with convenient mappings
- Advanced Editing: Text manipulation and code formatting
- Beautiful UI: Modern color schemes and airline status bar
- Language Server Protocol: Code intelligence via vim-lsp (lightweight native LSP client)
- Modern Language Support: Enhanced support for Ruby, TypeScript, React, and Python
# Change to your home directory
cd ~/
# Clone the repository
git clone https://github.com/duckworth/vim-settings.git ~/.vim
# Create symlinks for vimrc and gvimrc
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc
# Launch vim - plugins will be automatically installed on first startup
vim
If you're updating from an older version of this configuration, you can use the included cleanup script:
cd ~/.vim
chmod +x cleanup.sh
./cleanup.sh
This script will:
- Back up your existing configuration
- Remove old Pathogen plugins and settings
- Configure vim-plug and create necessary symlinks
- Set up the directory structure for the new configuration
For a complete reset (including all vim-plug plugins), use:
./cleanup.sh --full
After running the script, simply start Vim and the plugins will be installed automatically.
-
Clone the repository:
git clone https://github.com/duckworth/vim-settings.git ~/.vim
-
Create symlinks:
ln -s ~/.vim/vimrc ~/.vimrc ln -s ~/.vim/gvimrc ~/.gvimrc
-
Launch Vim. Vim-plug will automatically install itself and download all plugins on first startup.
After installing the plugins, you need to install language servers for your development stack:
# For Ruby
gem install solargraph
# For Python
pip install 'python-language-server[all]'
# For JavaScript/TypeScript
npm install -g typescript typescript-language-server
These language servers provide support for:
- solargraph: Ruby
- pyls: Python
- typescript-language-server: JavaScript and TypeScript
The vim-lsp plugin will automatically detect and use these language servers when you open files of the corresponding types.
To check if your installation is working correctly:
vim -u ~/.vim/check_install.vim
This will run a diagnostic script that verifies all components are properly installed.
Leader key is mapped to ,
(comma)
,f
- Find files,o
- Find Git files,b
- List buffers,d
- Files in current directoryF2
- Toggle NERDTree,nf
- Find current file in NERDTree
,te
- Tab edit,tc
- Tab close,to
- Tab only (close others),tn
- Next tab,tp
- Previous tab,tf
- First tab,tl
- Last tab
gd
- Go to definitiongy
- Go to type definitiongi
- Go to implementationgr
- Find referencesK
- Show documentation,rn
- Rename symbol,qf
- Code action]g
- Next diagnostic[g
- Previous diagnostic
,pj
- Format JSON,py
- Format YAML,px
- Format XML,ph
- Format HTML
To update all plugins, run this command in Vim:
:PlugUpdate
- Vim 8.0+ or Neovim
- Git
- curl
- Language servers for your development stack
For macOS users, installing MacVim is recommended:
brew install macvim