Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vimrc | 28,886 | 25 days ago | 13 | mit | Vim Script | |||||
The ultimate Vim configuration (vimrc) | ||||||||||
Spacevim | 19,893 | 6 days ago | 1 | July 02, 2022 | 39 | gpl-3.0 | Lua | |||
A community-driven modular vim/neovim distribution - The ultimate vimrc | ||||||||||
Nvchad | 17,442 | 3 days ago | 2 | August 19, 2021 | 5 | gpl-3.0 | Lua | |||
Blazing fast Neovim config providing solid defaults and a beautiful UI, enhancing your neovim experience. | ||||||||||
Lunarvim | 14,870 | 12 hours ago | 72 | gpl-3.0 | Lua | |||||
🌙 LunarVim is an IDE layer for Neovim. Completely free and community driven. | ||||||||||
Vim Pathogen | 11,902 | 9 months ago | 27 | vim | Vim Script | |||||
pathogen.vim: manage your runtimepath | ||||||||||
Vim Galore Zh_cn | 9,696 | a month ago | cc-by-sa-4.0 | Vim Script | ||||||
Vim 从入门到精通 | ||||||||||
K Vim | 4,883 | 4 months ago | 33 | Vim script | ||||||
vim配置 | ||||||||||
Nerdcommenter | 4,856 | 2 days ago | 93 | cc0-1.0 | Vim Script | |||||
Vim plugin for intensely nerdy commenting powers | ||||||||||
Vim Sensible | 4,853 | 2 months ago | 4 | Vim Script | ||||||
sensible.vim: Defaults everyone can agree on | ||||||||||
Space Vim | 2,861 | 2 months ago | 20 | mit | Vim Script | |||||
:four_leaf_clover: Lean & mean spacemacs-ish Vim distribution |
Think of sensible.vim as one step above 'nocompatible'
mode: a universal
set of defaults that (hopefully) everyone can agree on.
scp
this up to make things a bit more tolerable.Install using your favorite package manager, or use Vim's built-in package support:
mkdir -p ~/.vim/pack/tpope/start
cd ~/.vim/pack/tpope/start
git clone https://tpope.io/vim/sensible.git
See the source for the authoritative list of features. (Don't worry, it's
mostly :set
calls.) Here's a taste:
'backspace'
: Backspace through anything in insert mode.'incsearch'
: Start searching before pressing enter.'listchars'
: Makes :set list
(visible whitespace) prettier.'scrolloff'
: Always show at least one line above/below the cursor.'autoread'
: Autoload file changes. You can undo by pressing u
.runtime! macros/matchit.vim
: Load the version of matchit.vim that ships
with Vim.How can I see what this plugin actually does?
The source is authoritative. Use :help 'option'
to see the
documentation for an option. If you install scriptease.vim, you can press
K
on an option (or command, or function) to jump to its documentation.
How can I override a setting?
Normally, sensible.vim loads after your vimrc, making it a bit tricky to
override (although you could use after/plugin/sensible.vim
). If you want to
load it earlier, add the following line to your vimrc, then put your overrides
below.
runtime! plugin/sensible.vim
Feel free to let me know which setting you object to, so I can reassess whether it makes sense to include it.
I want this to be a plugin nobody objects to installing. Let me know if you have any objections to anything. There are a handful of settings I figured might be controversial, but I included anyways, just to settle the question once and for all. It won't take much persuasion for me to remove them. Everything else is negotiable.
Feel free to ask a question if you're not sure why I've set something, as I haven't put much effort into documenting that.
I'm a stickler for commit messages, so if you send me a pull request with so much as a superfluous period in the subject line, I will close it without so much as a second thought, and save my precious attention for someone who can actually follow directions.
Like sensible.vim? Follow the repository on GitHub and vote for it on vim.org. And if you're feeling especially charitable, follow tpope on Twitter and GitHub.
This pairs great with sleuth.vim.
Copyright Tim Pope. Distributed under the same terms as Vim itself.
See :help license
.