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:17] alfred |
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 6: | Línea 21: | ||
| <code> | <code> | ||
| - | mkdir -p ~/.vim/autoload ~/.vim/bundle && curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim | + | mkdir -p ~/.vim/autoload ~/.vim/bundle && \ |
| + | curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim | ||
| </code> | </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. | ||