call plug#begin('~/.local/share/nvim/plugged') Plug 'vim-airline/vim-airline' Plug 'morhetz/gruvbox' Plug 'neoclide/coc.nvim', {'branch': 'release'} call plug#end() "Theme colorscheme gruvbox "General Options set number relativenumber set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab set splitright set scrolloff=10 tnoremap command TMK w | call system("latexmk -pdf && latexmk -c") inoremap pumvisible() ? coc#_select_confirm() \: "\u\\=coc#on_enter()\" " coc.nvim Plugins let g:coc_global_extensions = [ \'coc-pairs', \'coc-json', \'coc-pyright', \'coc-go', \'coc-rust-analyzer', \'coc-clangd', \'coc-html', \'coc-css', \'coc-tsserver' \] " GoTo code navigation. nmap gd (coc-definition) nmap gy (coc-type-definition) nmap gi (coc-implementation) nmap gr (coc-references)