From ce85c50df702829b147dbc2000eec91b412e1b9d Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Fri, 4 Oct 2024 06:10:57 +0200 Subject: Reorganised vimrc --- vimrc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'vimrc') diff --git a/vimrc b/vimrc index 681244e..420eed9 100644 --- a/vimrc +++ b/vimrc @@ -1,21 +1,21 @@ +call plug#begin() + Plug 'tpope/vim-sensible' + Plug 'tpope/vim-commentary' + Plug 'tpope/vim-fugitive' + Plug 'jiangmiao/auto-pairs' + Plug 'junegunn/fzf' + Plug 'junegunn/fzf.vim' + Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': 'npm install'} +call plug#end() + colorscheme sorbet +hi Normal guibg=NONE ctermbg=NONE set number relativenumber autoindent signcolumn=yes set hidden nowrap nobackup noswapfile autoread updatetime=300 set encoding=utf8 spelllang=en_us set backspace=2 scrolloff=4 set shiftwidth=4 tabstop=4 -" https://github.com/junegunn/vim-plug -call plug#begin() -Plug 'tpope/vim-sensible' -Plug 'tpope/vim-commentary' -Plug 'tpope/vim-fugitive' -Plug 'jiangmiao/auto-pairs' -Plug 'junegunn/fzf' -Plug 'junegunn/fzf.vim' -Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': 'npm install'} -call plug#end() - nnoremap :bnext nnoremap :bprevious nnoremap :copen -- cgit v1.2.3