Skip to content

Commit b3029fa

Browse files
committed
Remove unused plugins
1 parent d239e22 commit b3029fa

File tree

1 file changed

+3
-22
lines changed

1 file changed

+3
-22
lines changed

plugins.vim

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,13 @@ call plug#begin('~/.vim/plugged')
1010
Plug 'altercation/vim-colors-solarized'
1111
Plug 'Yggdroot/indentLine'
1212

13-
" Text objects
14-
"Plug 'kana/vim-textobj-user' " Used for creating your own textobjects
15-
"Plug 'nelstrom/vim-textobj-rubyblock' " Custom text object for selecting ruby blocks.
16-
"Plug 'kana/vim-textobj-function' " Text objects for functions
17-
1813
" Development
1914
Plug 'ervandew/supertab' " Complete most used words with tab
20-
"Plug 'tpope/vim-endwise' " Helps to end certain structures automatically
2115
Plug 'editorconfig/editorconfig-vim' " Loads configurations from .editorconfig file
2216
Plug 'janko-m/vim-test' " Wrapper for running tests
23-
"Plug 'sheerun/vim-polyglot' " A collection of language packs for Vim.
2417

2518
" Javascript
2619
Plug 'pangloss/vim-javascript'
27-
"Plug 'maksimr/vim-jsbeautify' " Allows use of jsbeautifier
2820
Plug 'leafgarland/typescript-vim' " Syntax file and other settings for TypeScript.
2921

3022
" Elixir
@@ -43,15 +35,9 @@ call plug#begin('~/.vim/plugged')
4335
"Plug 'astashov/vim-ruby-debugger' " Interactive Ruby debugger
4436

4537
" Flutter
46-
"Plug 'dart-lang/dart-vim-plugin') " Provides filetype detection, syntax highlighting, and indentation for Dart.
47-
"Plug 'thosakwe/vim-flutter') " Vim commands for Flutter, including hot-reload-on-save and more.
48-
"Plug 'natebosch/vim-lsc-dart') "
49-
50-
" Google Code Fmt
51-
"Plug 'google/vim-maktaba' " Utility for syntax-aware code formatting.
52-
"Plug 'google/vim-codefmt' " Utility for syntax-aware code formatting.
53-
"Plug 'google/vim-glaive' " Used to configure codefmt's maktaba flags
54-
"Plug 'dense-analysis/ale' " Check syntax in Vim asynchronously and fix files, with Language Server Protocol (LSP)
38+
"Plug 'dart-lang/dart-vim-plugin' " Provides filetype detection, syntax highlighting, and indentation for Dart.
39+
"Plug 'thosakwe/vim-flutter' " Vim commands for Flutter, including hot-reload-on-save and more.
40+
"Plug 'natebosch/vim-lsc-dart' "
5541
call plug#end()
5642

5743
" Ctrlp Configurations
@@ -90,10 +76,6 @@ let g:javascript_plugin_jsdoc = 1 " Syntax highlighting for http://usejsdoc.org
9076
let g:javascript_plugin_flow = 1 " Syntax highlighting for https://flowtype.org
9177
let g:javascript_plugin_ngdoc = 1 " Syntax highlighting for NGDocs
9278

93-
" Vim Code Fmt
94-
"nmap <leader>fl :FormatLines<cr> " Format Lines
95-
"nmap <leader>fc :FormatCode<cr> " Formtat Code
96-
"
9779
" Vim RSPEC Configurations
9880
"let g:rspec_command = "!bundle exec rspec --drb {spec}" " Make the plugin run this command by default
9981
"let g:rspec_runner = "os_x_iterm" " This will run the specs in the last session of the current terminal.
@@ -124,7 +106,6 @@ let g:javascript_plugin_ngdoc = 1 " Syntax highlighting for NGDocs
124106
"nnoremap <leader>fldv :FlutterDevices<cr>
125107

126108
" Vim Mix Format Configurations
127-
" let g:mix_format_on_save = 1
128109
nnoremap <leader>mf :MixFormat<cr>
129110
nnoremap <leader>mfv :verb MixFormat<cr>
130111
nnoremap <leader>mfd :MixFormatDiff<cr>

0 commit comments

Comments
 (0)