clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

updated window navigation

sspaeti f1c30fb1 5bb33817

+30 -14
+10 -10
backup_dotfiles.sh
··· 1 1 #this script is done to automatically backup alls my dotsfiles 2 2 3 - cp ~/Library/ApplicationSupport/Code/User/settings.json $git/dotfiles/vscode/settings.json 4 - cp ~/Library/ApplicationSupport/Code/User/keybindings.json $git/dotfiles/vscode/keybindings.json 5 - cp ~/.vimrc $git/dotfiles/vim/vimrc #this will be outdated in a while, see nvim init.vim 3 + cp ~/Library/ApplicationSupport/Code/User/settings.json $git/general/dotfiles/vscode/settings.json 4 + cp ~/Library/ApplicationSupport/Code/User/keybindings.json $git/general/dotfiles/vscode/keybindings.json 5 + cp ~/.vimrc $git/general/dotfiles/vim/vimrc #this will be outdated in a while, see nvim init.vim 6 6 #using nvim going forward therefore separting configs 7 - cp ~/.config/nvim/init.vim $git/dotfiles/nvim/init.vim 8 - cp -r ~/.config/nvim/themes $git/dotfiles/nvim/themes 9 - cp -r ~/.config/nvim/autoload $git/dotfiles/nvim/autoload 10 - cp -r ~/.aliases.shrc $git/dotfiles/zsh/aliases.shrc 7 + cp ~/.config/nvim/init.vim $git/general/dotfiles/nvim/init.vim 8 + cp -r ~/.config/nvim/themes $git/general/dotfiles/nvim/themes 9 + cp -r ~/.config/nvim/autoload $git/general/dotfiles/nvim/autoload 10 + cp -r ~/.aliases.shrc $git/general/dotfiles/zsh/aliases.shrc 11 11 12 - brew bundle dump > $git/dotfiles/Brewfile -f 12 + brew bundle dump > $git/general/dotfiles/Brewfile -f 13 13 14 14 source $venvs/dagster/bin/activate 15 - pip freeze > $git/dotfiles/python/venvs/dagster.txt 15 + pip freeze > $git/general/dotfiles/python/venvs/dagster.txt 16 16 deactivate 17 17 18 18 source $venvs/banking/bin/activate 19 - pip freeze > $git/dotfiles/python/venvs/banking.txt 19 + pip freeze > $git/general/dotfiles/python/venvs/banking.txt 20 20 deactivate
+17 -1
nvim/init.vim
··· 25 25 26 26 Plug 'christoomey/vim-system-copy' 27 27 "Plug 'valloric/youcompleteme' 28 - Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) 28 + Plug 'tpope/vim-surround' " Surrounding ysw) 29 29 Plug 'ambv/black' 30 30 31 31 " telescope requirements... ··· 174 174 " Better tabbing 175 175 vnoremap < <gv 176 176 vnoremap > >gv 177 + 178 + " Better window navigation 179 + nnoremap <C-h> <C-w>h 180 + nnoremap <C-j> <C-w>j 181 + nnoremap <C-k> <C-w>k 182 + nnoremap <C-l> <C-w>l 183 + 184 + "tab and airline tabs navigation 185 + nmap <leader>1 :bfirst<CR> 186 + nmap <leader>2 :bfirst<CR>:bn<CR> 187 + nmap <leader>3 :bfirst<CR>:2bn<CR> 188 + nmap <leader>4 :bfirst<CR>:3bn<CR> 189 + nmap <leader>5 :bfirst<CR>:4bn<CR> 190 + nmap <leader>6 :bfirst<CR>:5bn<CR> 191 + nmap <leader>7 :bfirst<CR>:6bn<CR> 192 + nmap <leader>8 :bfirst<CR>:7bn<CR> 177 193 178 194 " Find files using Telescope command-line sugar. 179 195 nnoremap <leader>ff <cmd>Telescope find_files<cr>
+2 -2
python/venvs/banking.txt
··· 39 39 ipython-genutils==0.2.0 40 40 isort==5.9.3 41 41 itsdangerous==1.1.0 42 - jedi==0.18.0 42 + jedi==0.17.2 43 43 Jinja2==2.11.3 44 44 jsonschema==3.2.0 45 45 jupyter-core==4.7.1 ··· 57 57 packaging==21.0 58 58 pandas==1.3.1 59 59 pandocfilters==1.4.3 60 - parso==0.8.2 60 + parso==0.7.1 61 61 pathspec==0.9.0 62 62 pendulum==2.1.2 63 63 pluggy==0.13.1
-1
vim/vim-shortcuts.md
··· 1 - 11.08.2021 2 1 3 2 # learning VIM 4 3
+1
zsh/aliases.shrc
··· 19 19 alias gra='git remote add' 20 20 alias grr='git remote rm' 21 21 alias gpu='git pull' 22 + alias gf='git fetch' 22 23 alias gcl='git clone' 23 24 24 25 #docker