Skip to content

Instantly share code, notes, and snippets.

@tyjak
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tyjak/138bf649176f4d99659d to your computer and use it in GitHub Desktop.
Save tyjak/138bf649176f4d99659d to your computer and use it in GitHub Desktop.

Table of Contents

Vim meetup 150421

News

Plugins

  • Un plugin qui montre les différences avec le fichier versionné dans la colonne gutter airblade/vim-gitgutter
  • ~~Unobtrusive scratch window. Inspired by scratch.vim, enhanced. mtth/scratch~~
  • NeoBundle ou Vundle pour gérer ses plugin
  • Gist-vim pour gérer ses fichiers gist
  • Nerdtree pour naviguer sur le système de fichier
  • Asciidoc pour formater ses documents
  • plugin endwise pour les rubyistes pour terminer automatiquement id, do, def

Trucs

  • mapping pour activer la correction
nmap <silent> <leader>se :set spelllang=en spell!<CR>
nmap <silent> <leader>sf :set spelllang=fr spell!<CR>
  • ajouter une ligne d'un fichier dans un autre fichier sans l'ouvrir
:.w !cat - >> fileyoudontwantto.open
  • utiliser la touche espace en tant que leader key
  • remapper la touche ctrl sur la touche tab

Pour bien débuter sur vim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment