clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

update

sspaeti 59d04cce f71dc4fa

+7 -3
+1 -1
Brewfile
··· 71 71 cask "kitty" 72 72 cask "lastpass" 73 73 cask "libreoffice" 74 - cask "macvim" 74 + cask "loom" 75 75 cask "mark-text" 76 76 cask "notion" 77 77 cask "obsidian"
+6 -2
nvim/init.vim
··· 61 61 Plug 'github/copilot.vim' 62 62 "Markdown (or any Outline 63 63 Plug 'simrat39/symbols-outline.nvim' 64 - Plug 'vimwiki/vimwiki' 64 + "Plug 'vimwiki/vimwiki' 65 65 call plug#end() 66 66 "install with :PlugInstall 67 67 ··· 128 128 129 129 "auto format on save with Black 130 130 autocmd BufWritePre *.py execute ':Black' 131 + 132 + " Turn off autocomplete for Markdown 133 + autocmd FileType markdown let b:coc_suggest_disable = 1 131 134 132 135 let g:python3_host_prog = expand($HOME."/.venvs/nvim/bin/python3") 133 136 "expand($VIRTUAL_ENV."/bin/python3") ··· 283 286 map sj <C-w>j 284 287 map sl <C-w>l" Switch tab 285 288 nmap <S-Tab> :tabprev<Return> 286 - nmap <Tab> :tabnext<Return> 289 + " if you map <Tab> also ctrl+l will change! 290 + "nnoremap <Tab> :tabnext<Return> 287 291 288 292 " Find files using Telescope command-line sugar. --> replaced by fzf as faster and more options such as search :Lines :Buffer and .gitignore integration 289 293 " nnoremap <leader>ff <cmd>Telescope find_files<cr>