clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

adding some more nvim

sspaeti bec5a581 c50c5049

+207 -32
-25
Brewfile
··· 1 - tap "adoptopenjdk/openjdk" 2 - tap "homebrew/bundle" 3 - tap "homebrew/cask" 4 - tap "homebrew/cask-versions" 5 - tap "homebrew/core" 6 - tap "minio/stable" 7 - tap "osx-cross/arm" 8 - tap "osx-cross/avr" 9 - tap "qmk/qmk" 10 - brew "bash-completion" 11 - brew "docker", link: false 12 - brew "docker-machine" 13 - brew "hugo" 14 - brew "neovim" 15 - brew "pandoc" 16 - brew "python@3.8", link: true 17 - brew "tmux" 18 - brew "wget" 19 - brew "zsh-autosuggestions" 20 - brew "zsh-syntax-highlighting" 21 - brew "minio/stable/mc" 22 - brew "minio/stable/minio" 23 - brew "qmk/qmk/qmk" 24 - cask "adoptopenjdk11" 25 - cask "mark-text"
+4
backup_dotfiles.sh
··· 13 13 source $venvs/dagster/bin/activate 14 14 pip freeze > $git/dotfiles/python/venvs/dagster.txt 15 15 deactivate 16 + 17 + source $venvs/banking/bin/activate 18 + pip freeze > $git/dotfiles/python/venvs/banking.txt 19 + deactivate
+29
nvim/autoload/autoload/onedark.vim
··· 1 + " [onedark.vim](https://github.com/joshdick/onedark.vim/) 2 + 3 + let s:overrides = get(g:, "onedark_color_overrides", {}) 4 + 5 + let s:colors = { 6 + \ "red": get(s:overrides, "red", { "gui": "#E06C75", "cterm": "204", "cterm16": "1" }), 7 + \ "dark_red": get(s:overrides, "dark_red", { "gui": "#BE5046", "cterm": "196", "cterm16": "9" }), 8 + \ "green": get(s:overrides, "green", { "gui": "#98C379", "cterm": "114", "cterm16": "2" }), 9 + \ "yellow": get(s:overrides, "yellow", { "gui": "#E5C07B", "cterm": "180", "cterm16": "3" }), 10 + \ "dark_yellow": get(s:overrides, "dark_yellow", { "gui": "#D19A66", "cterm": "173", "cterm16": "11" }), 11 + \ "blue": get(s:overrides, "blue", { "gui": "#61AFEF", "cterm": "39", "cterm16": "4" }), 12 + \ "purple": get(s:overrides, "purple", { "gui": "#C678DD", "cterm": "170", "cterm16": "5" }), 13 + \ "cyan": get(s:overrides, "cyan", { "gui": "#56B6C2", "cterm": "38", "cterm16": "6" }), 14 + \ "white": get(s:overrides, "white", { "gui": "#ABB2BF", "cterm": "145", "cterm16": "15" }), 15 + \ "black": get(s:overrides, "black", { "gui": "#282C34", "cterm": "235", "cterm16": "0" }), 16 + \ "foreground": get(s:overrides, "foreground", { "gui": "#ABB2BF", "cterm": "145", "cterm16": "NONE" }), 17 + \ "background": get(s:overrides, "background", { "gui": "#282C34", "cterm": "235", "cterm16": "NONE" }), 18 + \ "comment_grey": get(s:overrides, "comment_grey", { "gui": "#5C6370", "cterm": "59", "cterm16": "7" }), 19 + \ "gutter_fg_grey": get(s:overrides, "gutter_fg_grey", { "gui": "#4B5263", "cterm": "238", "cterm16": "8" }), 20 + \ "cursor_grey": get(s:overrides, "cursor_grey", { "gui": "#2C323C", "cterm": "236", "cterm16": "0" }), 21 + \ "visual_grey": get(s:overrides, "visual_grey", { "gui": "#3E4452", "cterm": "237", "cterm16": "8" }), 22 + \ "menu_grey": get(s:overrides, "menu_grey", { "gui": "#3E4452", "cterm": "237", "cterm16": "7" }), 23 + \ "special_grey": get(s:overrides, "special_grey", { "gui": "#3B4048", "cterm": "238", "cterm16": "7" }), 24 + \ "vertsplit": get(s:overrides, "vertsplit", { "gui": "#3E4452", "cterm": "59", "cterm16": "7" }), 25 + \} 26 + 27 + function! onedark#GetColors() 28 + return s:colors 29 + endfunction
+73 -3
nvim/init.vim
··· 1 - set runtimepath^=~/.vim runtimepath+=~/.vim/after 2 - let &packpath=&runtimepath 3 - source ~/.vimrc 1 + "set runtimepath^=~/.vim runtimepath+=~/.vim/after 2 + "let &packpath=&runtimepath 3 + "source ~/.vimrc 4 + syntax on 5 + 6 + " Ignore files 7 + set wildignore+=*.pyc 8 + set wildignore+=*_build/* 9 + set wildignore+=**/coverage/* 10 + set wildignore+=**/.git/* 11 + 12 + " search related 13 + set hlsearch 14 + set ignorecase 15 + set incsearch 16 + set smartcase 17 + 18 + "general 19 + "colorscheme onedark 20 + let mapleader = " " 21 + inoremap jk <ESC> 22 + filetype plugin indent on 23 + 24 + set ruler " show the cursor position all the time 25 + set showcmd " display incomplete commands 26 + set laststatus=2 " Always display the status line 27 + 28 + set number 29 + set numberwidth=5 30 + set relativenumber 31 + 32 + " Find files using Telescope command-line sugar. 33 + nnoremap <leader>ff <cmd>Telescope find_files<cr> 34 + nnoremap <leader>fg <cmd>Telescope live_grep<cr> 35 + nnoremap <leader>fb <cmd>Telescope buffers<cr> 36 + nnoremap <leader>fh <cmd>Telescope help_tags<cr> 37 + nnoremap <C-p> <cmd>Telescope find_files<cr> 38 + 39 + "auto format on save with Black 40 + autocmd BufWritePre *.py execute ':Black' 41 + 42 + 43 + "plugs to intall 44 + call plug#begin('~/.config/nvim/vim-plug') 45 + "theme 46 + Plug 'vim-airline/vim-airline' 47 + Plug 'joshdick/onedark.vim' 48 + Plug 'sheerun/vim-polyglot' 49 + 50 + Plug 'christoomey/vim-system-copy' 51 + "Plug 'valloric/youcompleteme' 52 + Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) 53 + Plug 'ambv/black' 54 + 55 + " telescope requirements... 56 + Plug 'nvim-lua/popup.nvim' 57 + Plug 'nvim-lua/plenary.nvim' 58 + Plug 'nvim-telescope/telescope.nvim' 59 + Plug 'nvim-telescope/telescope-fzy-native.nvim' 60 + 61 + " prettier 62 + Plug 'sbdchd/neoformat' 63 + 64 + "support for go to defintion and autocompletion 65 + Plug 'davidhalter/jedi-vim' 66 + 67 + call plug#end() 68 + "install with :PlugInstall 69 + 70 + 71 + "cusotm stuff just for neovim 72 + source $HOME/.config/nvim/themes/airline.vim 73 + source $HOME/.config/nvim/themes/onedark.vim
+97
python/venvs/banking.txt
··· 1 + alembic==1.6.5 2 + aniso8601==7.0.0 3 + appdirs==1.4.4 4 + astroid==2.6.6 5 + attrs==21.2.0 6 + black==21.7b0 7 + bleach==4.0.0 8 + certifi==2021.5.30 9 + charset-normalizer==2.0.4 10 + click==7.1.2 11 + coloredlogs==14.0 12 + croniter==1.0.15 13 + dagit==0.12.5 14 + dagster==0.12.5 15 + dagster-graphql==0.12.5 16 + dagster-pandas==0.12.5 17 + defusedxml==0.7.1 18 + docstring-parser==0.10 19 + entrypoints==0.3 20 + Flask==1.1.4 21 + Flask-Cors==3.0.10 22 + Flask-GraphQL==2.0.1 23 + Flask-Sockets==0.2.1 24 + future==0.18.2 25 + gevent==21.8.0 26 + gevent-websocket==0.10.1 27 + gql==2.0.0 28 + graphene==2.1.9 29 + graphql-core==2.3.2 30 + graphql-relay==2.0.1 31 + graphql-server-core==1.2.0 32 + graphql-ws==0.3.1 33 + greenlet==1.1.1 34 + grpcio==1.39.0 35 + grpcio-health-checking==1.39.0 36 + humanfriendly==9.2 37 + idna==3.2 38 + iniconfig==1.1.1 39 + ipython-genutils==0.2.0 40 + isort==5.9.3 41 + itsdangerous==1.1.0 42 + jedi==0.18.0 43 + Jinja2==2.11.3 44 + jsonschema==3.2.0 45 + jupyter-core==4.7.1 46 + lazy-object-proxy==1.6.0 47 + Mako==1.1.4 48 + MarkupSafe==2.0.1 49 + mccabe==0.6.1 50 + mistune==0.8.4 51 + msgpack==1.0.2 52 + mypy-extensions==0.4.3 53 + nbconvert==5.6.1 54 + nbformat==5.1.3 55 + neovim==0.3.1 56 + numpy==1.21.1 57 + packaging==21.0 58 + pandas==1.3.1 59 + pandocfilters==1.4.3 60 + parso==0.8.2 61 + pathspec==0.9.0 62 + pendulum==2.1.2 63 + pluggy==0.13.1 64 + promise==2.3 65 + protobuf==3.17.3 66 + py==1.10.0 67 + Pygments==2.9.0 68 + pylint==2.9.6 69 + pynvim==0.4.3 70 + pyparsing==2.4.7 71 + pyrsistent==0.18.0 72 + pytest==6.2.4 73 + python-dateutil==2.8.2 74 + python-editor==1.0.4 75 + pytz==2021.1 76 + pytzdata==2020.1 77 + PyYAML==5.4.1 78 + regex==2021.8.3 79 + requests==2.26.0 80 + Rx==1.6.1 81 + six==1.16.0 82 + SQLAlchemy==1.4.22 83 + tabulate==0.8.9 84 + testpath==0.5.0 85 + toml==0.10.2 86 + tomli==1.2.1 87 + toposort==1.6 88 + tqdm==4.62.0 89 + traitlets==5.0.5 90 + typing-compat==0.1.0 91 + urllib3==1.26.6 92 + watchdog==2.1.3 93 + webencodings==0.5.1 94 + Werkzeug==1.0.1 95 + wrapt==1.12.1 96 + zope.event==4.5.0 97 + zope.interface==5.4.0
+4 -4
vim/vimrc
··· 39 39 40 40 "plugs to intall 41 41 call plug#begin('~/.vim/bundle') 42 + "theme 43 + Plug 'joshdick/onedark.vim' 44 + Plug 'sheerun/vim-polyglot' 45 + 42 46 Plug 'christoomey/vim-system-copy' 43 47 "Plug 'valloric/youcompleteme' 44 48 Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) ··· 52 56 53 57 " prettier 54 58 Plug 'sbdchd/neoformat' 55 - 56 - "status bar 57 - Plug 'vim-airline/vim-airline' 58 - Plug 'vim-airline/vim-airline-themes' 59 59 60 60 call plug#end() 61 61 "install with :PlugInstall