Remove unused vim plugins

This commit is contained in:
Rodolphe Bréard 2025-01-04 10:20:59 +01:00
parent d308fd50f8
commit 70fd4983a2
Signed by: rodolphe
SSH key fingerprint: SHA256:3rodCKnk1MUOfSlIKY0nHbBtvFyQx4EqjS+JIy69lN0

9
.vimrc
View file

@ -6,12 +6,9 @@ filetype off
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air. Plug 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air.
Plug 'antoyo/vim-licenses' " Vim Plugin that Provides Commands to Add Licenses at the Top of the Buffer.
Plug 'sjl/badwolf' " A Vim color scheme. Plug 'sjl/badwolf' " A Vim color scheme.
Plug 'rust-lang/rust.vim' " Vim configuration for Rust. Plug 'rust-lang/rust.vim' " Vim configuration for Rust.
Plug 'cespare/vim-toml' " Vim syntax for TOML. Plug 'cespare/vim-toml' " Vim syntax for TOML.
Plug 'editorconfig/editorconfig-vim' " EditorConfig plugin
Plug 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level
Plug 'leafOfTree/vim-vue-plugin' " Vim syntax and indent plugin for .vue files. Plug 'leafOfTree/vim-vue-plugin' " Vim syntax and indent plugin for .vue files.
Plug 'leafOfTree/vim-svelte-plugin' " Vim syntax and indent plugin for .svelte files. Plug 'leafOfTree/vim-svelte-plugin' " Vim syntax and indent plugin for .svelte files.
call plug#end() call plug#end()
@ -53,12 +50,6 @@ nnoremap k gk
let &t_ut='' let &t_ut=''
" Licenses
let g:licenses_copyright_holders_name = $USER_NICKNAME
let g:licenses_authors_name = $USER_NICKNAME
let g:licenses_default_commands = ['affero', 'apache', 'bsd3', 'cecill', 'gfdl', 'gpl', 'gplv2', 'isc', 'lgpl', 'mit', 'mpl', 'verbatim']
" Line number modes " Line number modes
:set number relativenumber :set number relativenumber
:augroup numbertoggle :augroup numbertoggle