Skip to content

Commit

Permalink
Initial commit from desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
mgunyho committed Aug 7, 2016
0 parents commit 847d430
Show file tree
Hide file tree
Showing 10 changed files with 3,526 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
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
6 changes: 6 additions & 0 deletions README.md
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.
6 changes: 6 additions & 0 deletions after/ftplugin/python.vim
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
Loading

0 comments on commit 847d430

Please sign in to comment.