Update

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2025-03-13 19:53:37 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2025-03-13 19:53:37 +0100
Commit 5cf8398f55fcdab0bb8bb4ea277b265aab7dd47b (patch)
-rw-r--r-- .vimrc 5
1 files changed, 2 insertions, 3 deletions
diff --git a/.vimrc b/.vimrc
1
call plug#begin()
1
call plug#begin()
2
  Plug 'tpope/vim-commentary'
  
3
  Plug 'tpope/vim-fugitive'
2
  Plug 'tpope/vim-fugitive'
  
3
  Plug 'tpope/vim-commentary'
4
  Plug 'ctrlpvim/ctrlp.vim'
4
  Plug 'ctrlpvim/ctrlp.vim'
5
  Plug 'dense-analysis/ale'
5
  Plug 'dense-analysis/ale'
6
  Plug 'mitjafelicijan/ungabunga'
  
7
call plug#end()
6
call plug#end()
8
  
7
  
9
set nocompatible laststatus=2 encoding=utf8 spelllang=en_us
8
set nocompatible laststatus=2 encoding=utf8 spelllang=en_us
10
set number relativenumber autoindent signcolumn=yes cursorline ignorecase
9
set number relativenumber autoindent signcolumn=yes cursorline ignorecase
11
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300
10
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300
12
colorscheme ungabunga
11
colorscheme wildcharm
13
  
12
  
14
nnoremap <C-Right> :bnext<cr>
13
nnoremap <C-Right> :bnext<cr>
15
nnoremap <C-Left> :bprevious<cr>
14
nnoremap <C-Left> :bprevious<cr>
...