diff options
| author | typebrook <typebrook@gmail.com> | 2018-10-10 10:27:44 +0800 |
|---|---|---|
| committer | typebrook <typebrook@gmail.com> | 2018-10-10 10:27:44 +0800 |
| commit | 3f5b7dec42ad797ff72e35591534cc98375ccf80 (patch) | |
| tree | 74dd5fd989e9cc5ac3f1706f1332f8958bf328e1 | |
| parent | 65429c679e050cdbe92d8fd0d92e4c5a88c3b8d7 (diff) | |
update
| -rw-r--r-- | .vimrc | 15 | ||||
| -rw-r--r-- | Makefile | 4 |
2 files changed, 2 insertions, 17 deletions
| @@ -1,19 +1,4 @@ | |||
| 1 | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | 1 | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" |
| 2 | " => Config from amix | ||
| 3 | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | ||
| 4 | set runtimepath+=~/.vim_runtime | ||
| 5 | |||
| 6 | source ~/.vim_runtime/vimrcs/basic.vim | ||
| 7 | source ~/.vim_runtime/vimrcs/filetypes.vim | ||
| 8 | source ~/.vim_runtime/vimrcs/plugins_config.vim | ||
| 9 | source ~/.vim_runtime/vimrcs/extended.vim | ||
| 10 | |||
| 11 | try | ||
| 12 | source ~/.vim_runtime/my_configs.vim | ||
| 13 | catch | ||
| 14 | endtry | ||
| 15 | |||
| 16 | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | ||
| 17 | " => Custom Config | 2 | " => Custom Config |
| 18 | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | 3 | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" |
| 19 | set cursorline | 4 | set cursorline |
| @@ -1,11 +1,11 @@ | |||
| 1 | sync-alias: | 1 | sync-alias: |
| 2 | cat ~/.bash_aliases > ./.bash_aliases | 2 | cat ~/.bash_aliases > ./.bash_aliases |
| 3 | sync-vim: | 3 | sync-vim: |
| 4 | cat ~/.vimrc > ./.vimrc | 4 | cat ~/.vim_runtime/my_configs.vim > ./.vimrc |
| 5 | apply-alias: | 5 | apply-alias: |
| 6 | cat ./.bash_aliases > ~/.bash_aliases | 6 | cat ./.bash_aliases > ~/.bash_aliases |
| 7 | apply-vim: | 7 | apply-vim: |
| 8 | cat ./.vimrc > ~/.vimrc | 8 | cat ./.vimrc > ~/.vim_runtime/my_configs.vim |
| 9 | push: | 9 | push: |
| 10 | git commit -am "update" | 10 | git commit -am "update" |
| 11 | git push | 11 | git push |