-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 847d430
Showing
10 changed files
with
3,526 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
*~ | ||
*.swp | ||
*.swo | ||
.netrwhist | ||
|
||
# Skip 'plugged' directory, used plugins are defined in the vimrc. | ||
# Use :PlugStatus to show missing ones and PlugInstall to install them. | ||
# No need to have these in git. | ||
plugged/ | ||
|
||
view/ | ||
|
||
.directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# vim-things | ||
A git repo containing my vim configuration. | ||
|
||
With vim version >= 7.4, you can have the `.vimrc` in `$HOME/.vim/vimrc` on UNIX or in `$HOME/vimfiles/vimrc` on Windows. This allows for easy management of the vim directory via git without having to have your whole `$HOME` in the repo. Note that `.vim/[g]vimrc` doesn't get sourced if you have a regular `.vimrc` in `$HOME` already, so either move `.vimrc` to `.vim/` or `source .vim/vimrc`. | ||
|
||
I do not provide an installation script (often seen in other people's vimrcs on GitHub), as the structure is simple enough that you should be able to look through it and pick out things that you find are useful. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
set expandtab | ||
set smarttab | ||
set shiftwidth=2 | ||
set tabstop=2 | ||
set softtabstop=2 | ||
set smartindent |
Oops, something went wrong.