Muestra las diferencias entre dos versiones de la página.
| Ambos lados, revisión anterior Revisión previa Próxima revisión | Revisión previa | ||
|
wiki2:vim_config [2019/11/20 14:46] alfred [Pathogen] |
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 ===== | ===== Plugin managers ===== | ||
| Línea 12: | Línea 27: | ||
| Recuerda con proxy: ''curl http_proxy=...'' | Recuerda con proxy: ''curl http_proxy=...'' | ||
| - | <code> | + | ===== Notes ===== |
| - | .vim | + | |
| - | |____.vimrc/ # | + | ==== Improve performance ==== |
| - | |____after/ # for overrides to system-level vim | + | If vim goes too slow do: '':syntax off''. |
| - | |____autoload/ # a directory for some plugins | + | |
| - | |____colors/ # custom colorthemes | + | You can also try other terminal emulators like Alacritty, Tilda, Kitty, iTerm, Terminal or Hyper. |
| - | |____doc/ # documentation | + | |
| - | |____ftplugin/ # custom filetype plugins | + | |
| - | |____indent/ # custom indentation overrides | + | |
| - | |____plugin/ # plugin installation directory | + | |
| - | |____syntax/ # custom syntax coloring files | + | |
| - | </code> | + | |