aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-10-04 06:10:57 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-10-04 06:10:57 +0200
commitce85c50df702829b147dbc2000eec91b412e1b9d (patch)
tree3453ed45dbddb7eaa8a486e141e62a7b3b5e8478
parent354dad1d7eff597e33562ccc1b0cf77fca2dbf87 (diff)
downloaddotfiles-ce85c50df702829b147dbc2000eec91b412e1b9d.tar.gz
Reorganised vimrc
-rw-r--r--vimrc22
1 files changed, 11 insertions, 11 deletions
diff --git a/vimrc b/vimrc
index 681244e..420eed9 100644
--- a/vimrc
+++ b/vimrc
@@ -1,21 +1,21 @@
1call plug#begin()
2 Plug 'tpope/vim-sensible'
3 Plug 'tpope/vim-commentary'
4 Plug 'tpope/vim-fugitive'
5 Plug 'jiangmiao/auto-pairs'
6 Plug 'junegunn/fzf'
7 Plug 'junegunn/fzf.vim'
8 Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': 'npm install'}
9call plug#end()
10
1colorscheme sorbet 11colorscheme sorbet
12hi Normal guibg=NONE ctermbg=NONE
2set number relativenumber autoindent signcolumn=yes 13set number relativenumber autoindent signcolumn=yes
3set hidden nowrap nobackup noswapfile autoread updatetime=300 14set hidden nowrap nobackup noswapfile autoread updatetime=300
4set encoding=utf8 spelllang=en_us 15set encoding=utf8 spelllang=en_us
5set backspace=2 scrolloff=4 16set backspace=2 scrolloff=4
6set shiftwidth=4 tabstop=4 17set shiftwidth=4 tabstop=4
7 18
8" https://github.com/junegunn/vim-plug
9call plug#begin()
10Plug 'tpope/vim-sensible'
11Plug 'tpope/vim-commentary'
12Plug 'tpope/vim-fugitive'
13Plug 'jiangmiao/auto-pairs'
14Plug 'junegunn/fzf'
15Plug 'junegunn/fzf.vim'
16Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': 'npm install'}
17call plug#end()
18
19nnoremap <C-Right> :bnext<cr> 19nnoremap <C-Right> :bnext<cr>
20nnoremap <C-Left> :bprevious<cr> 20nnoremap <C-Left> :bprevious<cr>
21nnoremap <C-q> :copen<cr> 21nnoremap <C-q> :copen<cr>