Skip to content

Commit 2ffb9fd

Browse files
authored
Merge pull request #7 from eguzki/vim-plug
switch to vim-plug
2 parents f90582f + 271aa88 commit 2ffb9fd

File tree

1 file changed

+32
-39
lines changed

1 file changed

+32
-39
lines changed

.vimrc

+32-39
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
" Maintainer: Eguzki Astiz Lezaun
33
"
44
"
5-
" Version: 1.8 - Oct 2023
5+
" Version: 1.9 - Feb 2025
66
"
77
" Sections:
88
" -> General
@@ -13,8 +13,8 @@
1313
"
1414
" Plugins_Included:
1515
"
16-
" > Vundle - https://github.com/gmarik/vundle
17-
" Vundle is short for Vim bundle and is a Vim plugin manager.
16+
" > Vim-Plug - https://github.com/junegunn/vim-plug
17+
" Vim-Plug is a minimalist Vim plugin manager.
1818
"
1919
" > NERD tree - https://github.com/scrooloose/nerdtree
2020
" Vundle is short for Vim bundle and is a Vim plugin manager.
@@ -152,48 +152,41 @@ au! BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml foldmethod=indent
152152
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
153153

154154
""""""""""""""""""""""""""""""
155-
" => Vundle
155+
" => Vim-Plug
156156
""""""""""""""""""""""""""""""
157-
set nocompatible " be iMproved, required
158-
filetype off " required
159-
160-
" set the runtime path to include Vundle and initialize
161-
set rtp+=~/.vim/bundle/Vundle.vim
162-
call vundle#begin()
163-
164-
" let Vundle manage Vundle
165-
" required!
166-
Plugin 'gmarik/Vundle.vim'
167-
168-
" Keep Plugin commands between vundle#begin/end.
169-
Plugin 'scrooloose/nerdtree'
170-
Plugin 'Lokaltog/vim-easymotion'
171-
Plugin 'tpope/vim-surround'
172-
Plugin 'scrooloose/syntastic'
173-
Plugin 'junegunn/fzf'
174-
Plugin 'junegunn/fzf.vim'
175-
Plugin 'Valloric/ListToggle'
176-
Plugin 'bling/vim-airline'
177-
Plugin 'junegunn/vim-easy-align'
178-
Plugin 'lifepillar/vim-solarized8'
179-
Plugin 'wakatime/vim-wakatime'
180-
Plugin 'mileszs/ack.vim'
181-
Plugin 'airblade/vim-gitgutter'
182-
Plugin 'Yggdroot/indentLine'
183-
Plugin 'tpope/vim-fugitive'
184-
Plugin 'github/copilot.vim'
185-
186-
" All of your Plugins must be added before the following line
187-
call vundle#end() " required
188-
filetype plugin indent on " required
189-
" To ignore plugin indent changes, instead use:
190-
" "filetype plugin on
157+
call plug#begin()
158+
159+
" List your plugins here
160+
161+
Plug 'scrooloose/nerdtree'
162+
Plug 'Lokaltog/vim-easymotion'
163+
Plug 'tpope/vim-surround'
164+
Plug 'scrooloose/syntastic'
165+
Plug 'junegunn/fzf'
166+
Plug 'junegunn/fzf.vim'
167+
Plug 'Valloric/ListToggle'
168+
Plug 'bling/vim-airline'
169+
Plug 'junegunn/vim-easy-align'
170+
Plug 'lifepillar/vim-solarized8'
171+
Plug 'wakatime/vim-wakatime'
172+
Plug 'mileszs/ack.vim'
173+
Plug 'airblade/vim-gitgutter'
174+
Plug 'Yggdroot/indentLine'
175+
Plug 'tpope/vim-fugitive'
176+
Plug 'github/copilot.vim'
177+
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
178+
Plug 'majutsushi/tagbar'
179+
180+
call plug#end()
181+
182+
" You can revert the settings after the call like so:
183+
" filetype indent off " Disable file-type-specific indentation
184+
" syntax off " Disable syntax highlighting
191185

192186
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
193187
" => Colors and Fonts
194188
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
195189
"Enable syntax hl
196-
syntax enable
197190
if $COLORTERM == 'gnome-terminal'
198191
set t_Co=256
199192
endif

0 commit comments

Comments
 (0)