├── .vimrc ├── .vimrc-mac ├── LICENSE ├── README.md ├── install-mac.sh ├── install.sh └── snippets ├── asm.snippets ├── cpp.snippets ├── html.snippets └── python.snippets /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/.vimrc -------------------------------------------------------------------------------- /.vimrc-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/.vimrc-mac -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/README.md -------------------------------------------------------------------------------- /install-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/install-mac.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/install.sh -------------------------------------------------------------------------------- /snippets/asm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/snippets/asm.snippets -------------------------------------------------------------------------------- /snippets/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/snippets/cpp.snippets -------------------------------------------------------------------------------- /snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/snippets/html.snippets -------------------------------------------------------------------------------- /snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/vimrc/HEAD/snippets/python.snippets --------------------------------------------------------------------------------