Skip to content

Instantly share code, notes, and snippets.

@vixfwis
Created October 18, 2022 10:56
Show Gist options
  • Save vixfwis/ecfb10e2449513de6f966277d04a2e3e to your computer and use it in GitHub Desktop.
Save vixfwis/ecfb10e2449513de6f966277d04a2e3e to your computer and use it in GitHub Desktop.
call plug#begin(stdpath('data') . '/plugged')
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'bling/vim-bufferline'
Plug 'tpope/vim-fugitive'
Plug 'junegunn/fzf.vim'
Plug 'zacanger/angr.vim'
Plug 'morhetz/gruvbox'
Plug 'igankevich/mesonic'
"Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()
autocmd vimenter * ++nested colorscheme gruvbox
autocmd BufReadPost *
\ if line("'\"") > 1 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
syntax on
let g:airline_theme='angr'
let g:airline_powerline_fonts = 1
let g:bufferline_echo = 0
set tabstop=4 softtabstop=4 noexpandtab shiftwidth=4 nosmarttab
set number
nnoremap <silent> <leader>h :noh<CR>
nnoremap <silent> <leader>u viwu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment