clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

updating neovim and some plugins

sspaeti 74b245e3 3361ae72

+35 -1
+2 -1
Brewfile
··· 8 8 tap "osx-cross/avr" 9 9 tap "qmk/qmk" 10 10 brew "bash-completion" 11 - brew "docker" 11 + brew "docker", link: false 12 12 brew "docker-machine" 13 13 brew "hugo" 14 + brew "neovim" 14 15 brew "pandoc" 15 16 brew "python@3.8", link: true 16 17 brew "tmux"
+1
backup_dotfiles.sh
··· 3 3 cp ~/Library/ApplicationSupport/Code/User/settings.json $git/dotfiles/vscode/settings.json 4 4 cp ~/Library/ApplicationSupport/Code/User/keybindings.json $git/dotfiles/vscode/keybindings.json 5 5 cp ~/.vimrc $git/dotfiles/vim/vimrc 6 + cp ~/.config/nvim/init.vim $git/dotfiles/vim/init.vim 6 7 7 8 brew bundle dump > $git/dotfiles/Brewfile -f 8 9
+3
python/venvs/dagster.txt
··· 126 126 mock==3.0.5 127 127 more-itertools==8.5.0 128 128 moto==1.3.16 129 + msgpack==1.0.2 129 130 munch==2.5.0 130 131 mypy-extensions==0.4.3 131 132 natsort==7.0.1 132 133 nbconvert==5.6.1 133 134 nbformat==5.0.7 135 + neovim==0.3.1 134 136 networkx==2.5 135 137 nteract-scrapbook==0.4.1 136 138 numpy==1.19.0 ··· 166 168 pygls==0.9.1 167 169 Pygments==2.6.1 168 170 pylint==2.6.0 171 + pynvim==0.4.3 169 172 pyparsing==2.4.7 170 173 pyproj==2.6.1.post1 171 174 pyrsistent==0.16.0
+3
vim/init.vim
··· 1 + set runtimepath^=~/.vim runtimepath+=~/.vim/after 2 + let &packpath=&runtimepath 3 + source ~/.vimrc
+26
vim/vimrc
··· 1 1 syntax on 2 2 3 + " Ignore files 4 + set wildignore+=*.pyc 5 + set wildignore+=*_build/* 6 + set wildignore+=**/coverage/* 7 + set wildignore+=**/.git/* 3 8 4 9 " search related 5 10 set hlsearch ··· 21 26 set numberwidth=5 22 27 set relativenumber 23 28 29 + " Find files using Telescope command-line sugar. 30 + nnoremap <leader>ff <cmd>Telescope find_files<cr> 31 + nnoremap <leader>fg <cmd>Telescope live_grep<cr> 32 + nnoremap <leader>fb <cmd>Telescope buffers<cr> 33 + nnoremap <leader>fh <cmd>Telescope help_tags<cr> 34 + nnoremap <C-p> <cmd>Telescope find_files<cr> 35 + 36 + "auto format on save with Black 37 + autocmd BufWritePre *.py execute ':Black' 38 + 24 39 25 40 "plugs to intall 26 41 call plug#begin('~/.vim/bundle') 27 42 Plug 'christoomey/vim-system-copy' 28 43 "Plug 'valloric/youcompleteme' 29 44 Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) 45 + Plug 'ambv/black' 46 + 47 + " telescope requirements... 48 + Plug 'nvim-lua/popup.nvim' 49 + Plug 'nvim-lua/plenary.nvim' 50 + Plug 'nvim-telescope/telescope.nvim' 51 + Plug 'nvim-telescope/telescope-fzy-native.nvim' 52 + 53 + " prettier 54 + Plug 'sbdchd/neoformat' 55 + 30 56 call plug#end() 31 57 "install with :PlugInstall