|
2 | 2 | " Maintainer: Eguzki Astiz Lezaun
|
3 | 3 | "
|
4 | 4 | "
|
5 |
| -" Version: 1.8 - Oct 2023 |
| 5 | +" Version: 1.9 - Feb 2025 |
6 | 6 | "
|
7 | 7 | " Sections:
|
8 | 8 | " -> General
|
|
13 | 13 | "
|
14 | 14 | " Plugins_Included:
|
15 | 15 | "
|
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. |
18 | 18 | "
|
19 | 19 | " > NERD tree - https://github.com/scrooloose/nerdtree
|
20 | 20 | " 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
|
152 | 152 | autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|
153 | 153 |
|
154 | 154 | """"""""""""""""""""""""""""""
|
155 |
| -" => Vundle |
| 155 | +" => Vim-Plug |
156 | 156 | """"""""""""""""""""""""""""""
|
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 |
191 | 185 |
|
192 | 186 | """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
193 | 187 | " => Colors and Fonts
|
194 | 188 | """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
195 | 189 | "Enable syntax hl
|
196 |
| -syntax enable |
197 | 190 | if $COLORTERM == 'gnome-terminal'
|
198 | 191 | set t_Co=256
|
199 | 192 | endif
|
|
0 commit comments