clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

add coc-settings.json

sspaeti f2c9585c d10a8bf1

+20 -2
+2 -1
backup_dotfiles.sh
··· 2 2 3 3 cp ~/Library/ApplicationSupport/Code/User/settings.json $git/general/dotfiles/vscode/settings.json 4 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 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 7 cp ~/.config/nvim/init.vim $git/general/dotfiles/nvim/init.vim 8 8 cp ~/.config/nvim/coc.vim $git/general/dotfiles/nvim/coc.vim 9 + cp ~/.config/nvim/coc-settings.json $git/general/dotfiles/nvim/coc-settings.json 9 10 cp -r ~/.config/nvim/themes $git/general/dotfiles/nvim/themes 10 11 cp -r ~/.config/nvim/autoload $git/general/dotfiles/nvim/autoload 11 12 cp -r ~/.gitconfig $git/general/dotfiles/git/gitconfig
+17
nvim/coc-settings.json
··· 1 + { 2 + "git.enableGutters": false, 3 + //python config 4 + "python.linting.enabled": true, 5 + "python.linting.pylintEnabled": true, 6 + "python.linting.pylintArgs": [ 7 + "--rcfile", 8 + "~/.pylintrc", 9 + ], 10 + "python.formatting.provider": "black", 11 + "python.formatting.blackArgs": [ 12 + "--line-length", 13 + "100", 14 + "-S", 15 + "--fast", 16 + ] 17 + }
+1 -1
nvim/init.vim
··· 119 119 "auto format on save with Black 120 120 autocmd BufWritePre *.py execute ':Black' 121 121 122 - " let g:python3_host_prog = "$venvs/banking/bin/python3" 122 + "let g:python3_host_prog = expand($HOME."/.venvs/nvim/bin/python3") "expand($VIRTUAL_ENV."/bin/python3") 123 123 124 124 " coc 125 125 "let g:coc_node_path = "/opt/homebrew/bin/node"