clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

added aliases

sspaeti 5bb33817 b6ba2fc5

+62 -31
+1
backup_dotfiles.sh
··· 7 7 cp ~/.config/nvim/init.vim $git/dotfiles/nvim/init.vim 8 8 cp -r ~/.config/nvim/themes $git/dotfiles/nvim/themes 9 9 cp -r ~/.config/nvim/autoload $git/dotfiles/nvim/autoload 10 + cp -r ~/.aliases.shrc $git/dotfiles/zsh/aliases.shrc 10 11 11 12 brew bundle dump > $git/dotfiles/Brewfile -f 12 13
+29 -31
nvim/init.vim
··· 15 15 endif 16 16 17 17 18 + "plugs to intall 19 + call plug#begin('~/.config/nvim/vim-plug') 20 + "theme 21 + Plug 'vim-airline/vim-airline' 22 + Plug 'joshdick/onedark.vim' 23 + Plug 'sheerun/vim-polyglot' 24 + Plug 'gruvbox-community/gruvbox' 25 + 26 + Plug 'christoomey/vim-system-copy' 27 + "Plug 'valloric/youcompleteme' 28 + Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) 29 + Plug 'ambv/black' 30 + 31 + " telescope requirements... 32 + Plug 'nvim-lua/popup.nvim' 33 + Plug 'nvim-lua/plenary.nvim' 34 + Plug 'nvim-telescope/telescope.nvim' 35 + Plug 'nvim-telescope/telescope-fzy-native.nvim' 36 + 37 + " prettier 38 + Plug 'sbdchd/neoformat' 39 + 40 + "support for go to defintion and autocompletion 41 + Plug 'davidhalter/jedi-vim' 42 + Plug 'jmcantrell/vim-virtualenv' 43 + 44 + Plug 'liuchengxu/vim-which-key' 45 + call plug#end() 46 + "install with :PlugInstall 18 47 19 48 20 49 " Ignore files ··· 194 223 195 224 "auto format on save with Black 196 225 autocmd BufWritePre *.py execute ':Black' 197 - 198 - 199 - "plugs to intall 200 - call plug#begin('~/.config/nvim/vim-plug') 201 - "theme 202 - Plug 'vim-airline/vim-airline' 203 - Plug 'joshdick/onedark.vim' 204 - Plug 'sheerun/vim-polyglot' 205 - Plug 'gruvbox-community/gruvbox' 206 - 207 - Plug 'christoomey/vim-system-copy' 208 - "Plug 'valloric/youcompleteme' 209 - Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) 210 - Plug 'ambv/black' 211 - 212 - " telescope requirements... 213 - Plug 'nvim-lua/popup.nvim' 214 - Plug 'nvim-lua/plenary.nvim' 215 - Plug 'nvim-telescope/telescope.nvim' 216 - Plug 'nvim-telescope/telescope-fzy-native.nvim' 217 - 218 - " prettier 219 - Plug 'sbdchd/neoformat' 220 - 221 - "support for go to defintion and autocompletion 222 - Plug 'davidhalter/jedi-vim' 223 - Plug 'jmcantrell/vim-virtualenv' 224 - 225 - Plug 'liuchengxu/vim-which-key' 226 - call plug#end() 227 - "install with :PlugInstall 228 226 229 227 230 228 "cusotm stuff just for neovim
+32
zsh/aliases.shrc
··· 1 + #python 3 2 + alias python=/usr/local/bin/python3 3 + #alias pip=//usr/bin/pip3 4 + #make neovim default vim 5 + export EDITOR="nvim" 6 + alias vim=nvim 7 + 8 + #git shortcuts 9 + alias ga='git add' 10 + alias gp='git push' 11 + alias gl='git log' 12 + alias gs='git status' 13 + alias gd='git diff' 14 + alias gdc='git diff --cached' 15 + alias gm='git commit -m' 16 + alias gma='git commit -am' 17 + alias gb='git branch' 18 + alias gc='git checkout' 19 + alias gra='git remote add' 20 + alias grr='git remote rm' 21 + alias gpu='git pull' 22 + alias gcl='git clone' 23 + 24 + #docker 25 + alias dkps="docker ps" 26 + alias dkst="docker stats" 27 + alias dkpsa="docker ps -a" 28 + alias dkimgs="docker images" 29 + alias dkcpup="docker-compose up -d" 30 + alias dkcpdown="docker-compose down" 31 + alias dkcpstart="docker-compose start" 32 + alias dkcpstop="docker-compose stop"