Created
May 23, 2023 05:49
-
-
Save nk4dev/4f498a6e290f39812899de92e8d1b249 to your computer and use it in GitHub Desktop.
2023 Vimrc setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set number | |
set t_Co=256 | |
set cmdheight=2 | |
set backspace=indent,eol,start | |
call plug#begin() | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'ryanoasis/vim-devicons' | |
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } | |
Plug 'junegunn/fzf.vim' | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'rust-lang/rust.vim' | |
call plug#end() | |
let g:airline#extensions#tabline#enabled = 1 | |
let g:airline#extensions#tabline#left_sep = ' ' | |
let g:airline#extensions#tabline#left_alt_sep = '|' | |
let g:airline#extensions#tabline#formatter = 'unique_tail_improved' | |
let g:airline_theme = 'wombat' | |
let g:airline#extensions#tabline#enabled = 1 | |
let g:airline_powerline_fonts = 1 | |
let g:coc_global_extensions = ['coc-rust-analyzer'] | |
nmap <space>e <Cmd>CocCommand explorer<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
make public