Herramientas de usuario

Herramientas del sitio


wiki2:vim_config

Diferencias

Muestra las diferencias entre dos versiones de la página.

Enlace a la vista de comparación

Próxima revisión
Revisión previa
wiki2:vim_config [2019/11/20 14:13]
alfred creado
wiki2:vim_config [2020/05/09 09:25] (actual)
Línea 1: Línea 1:
 ====== Vim Configuration ====== ====== Vim Configuration ======
  
 +The ''​.vimrc''​ file on your home folder is the vim configuration file. However you can use the next ''​.vim''​ folder structure, also in the home folder:
 +
 +<​code>​
 +.vim
 +  |__vimrc ​   # configuration file 
 +  |__after/ ​   # for overrides to system-level vim
 +  |__autoload/​ # a directory for some plugins
 +  |__colors/ ​  # custom colorthemes
 +  |__doc/ ​     # documentation
 +  |__ftplugin/​ # custom filetype plugins
 +  |__indent/ ​  # custom indentation overrides
 +  |__plugin/ ​  # plugin installation directory
 +  |__syntax/ ​  # custom syntax coloring files
 +</​code>​
 +
 +===== Plugin managers =====
 +
 +==== Pathogen ====
 +
 +<​code>​
 +mkdir -p ~/​.vim/​autoload ~/​.vim/​bundle && \
 +curl -LSso ~/​.vim/​autoload/​pathogen.vim https://​tpo.pe/​pathogen.vim
 +</​code>​
 +
 +Recuerda con proxy: ''​curl http_proxy=...''​
 +
 +===== Notes =====
 +
 +==== Improve performance ====
 +If vim goes too slow do: '':​syntax off''​. ​
 +
 +You can also try other terminal emulators like Alacritty, Tilda, Kitty, iTerm, Terminal or Hyper.
wiki2/vim_config.1574259223.txt.gz · Última modificación: 2020/05/09 09:25 (editor externo)