-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Update] remove git in mackup
- Loading branch information
Showing
7 changed files
with
62 additions
and
3 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,2 @@ | ||
# Place aliases in this file, for example: | ||
# alias cat='bat' |
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 @@ | ||
# Modify this file to be `.aliases.local` for your own local/personal usage. |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
.gitconfig.local | ||
.gitconfig.local | ||
.aliases.local |
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 |
---|---|---|
|
@@ -49,7 +49,6 @@ cyberduck | |
dash | ||
docker | ||
editorconfig | ||
git | ||
gnupg | ||
gradle | ||
keka | ||
|
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,50 @@ | ||
" set cursorline | ||
" set number | ||
set nocompatible " be iMproved, required | ||
filetype off " required | ||
|
||
" set the runtime path to include Vundle and initialize | ||
set rtp+=~/.vim/bundle/Vundle.vim | ||
call vundle#begin() | ||
" alternatively, pass a path where Vundle should install plugins | ||
"call vundle#begin('~/some/path/here') | ||
|
||
" let Vundle manage Vundle, required | ||
Plugin 'VundleVim/Vundle.vim' | ||
|
||
" http://vimawesome.com/plugin/ctrlp-vim-red | ||
" This does the same thing as Sublime’s Ctrl P. Fuzzy search by file name. | ||
" Must have. | ||
Plugin 'kien/ctrlp.vim' | ||
|
||
Plugin 'scrooloose/syntastic' | ||
|
||
" Plugin 'stanangeloff/php.vim' | ||
" Bundle 'joonty/vim-phpqa.git' | ||
" Plugin 'shawncplus/phpcomplete.vim' | ||
" Plugin 'ervandew/supertab' | ||
|
||
Plugin 'tpope/vim-markdown' | ||
|
||
Plugin 'pangloss/vim-javascript' | ||
Plugin 'rust-lang/rust.vim' | ||
Plugin 'racer-rust/vim-racer' | ||
|
||
" All of your Plugins must be added before the following line | ||
call vundle#end() " required | ||
syntax enable | ||
filetype plugin indent on " required | ||
" To ignore plugin indent changes, instead use: | ||
"filetype plugin on | ||
" | ||
" Brief help | ||
" :PluginList - lists configured plugins | ||
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate | ||
" :PluginSearch foo - searches for foo; append `!` to refresh local cache | ||
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal | ||
" | ||
" see :h vundle for more details or wiki for FAQ | ||
" Put your non-Plugin stuff after this line | ||
|
||
" For SuperTab | ||
let g:SuperTabDefaultCompletionType = "" |
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
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