···6161Plug 'github/copilot.vim'
6262"Markdown (or any Outline
6363Plug 'simrat39/symbols-outline.nvim'
6464-Plug 'vimwiki/vimwiki'
6464+"Plug 'vimwiki/vimwiki'
6565call plug#end()
6666"install with :PlugInstall
6767···128128129129"auto format on save with Black
130130autocmd BufWritePre *.py execute ':Black'
131131+132132+" Turn off autocomplete for Markdown
133133+autocmd FileType markdown let b:coc_suggest_disable = 1
131134132135let g:python3_host_prog = expand($HOME."/.venvs/nvim/bin/python3")
133136"expand($VIRTUAL_ENV."/bin/python3")
···283286map sj <C-w>j
284287map sl <C-w>l" Switch tab
285288nmap <S-Tab> :tabprev<Return>
286286-nmap <Tab> :tabnext<Return>
289289+" if you map <Tab> also ctrl+l will change!
290290+"nnoremap <Tab> :tabnext<Return>
287291288292" Find files using Telescope command-line sugar. --> replaced by fzf as faster and more options such as search :Lines :Buffer and .gitignore integration
289293" nnoremap <leader>ff <cmd>Telescope find_files<cr>