https://github.com/jorgepiloto/vimrc
Jorge's Vim configuration
https://github.com/jorgepiloto/vimrc
Last synced: 3 months ago
JSON representation
Jorge's Vim configuration
- Host: GitHub
- URL: https://github.com/jorgepiloto/vimrc
- Owner: jorgepiloto
- License: agpl-3.0
- Created: 2022-10-29T09:47:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-17T19:03:47.000Z (over 2 years ago)
- Last Synced: 2025-01-25T21:11:26.615Z (5 months ago)
- Language: Vim Script
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jorge's Vim configuration
The configuration defined by this repository allows for a minimal but powerful
Vim experience. It minimizes third party plugin usage in favor of various
utilities already implemented in the editor. These include default Vim package
manager, file manipulation, language server protocol (LSP), and many more.## Installation
Vim looks for the `$VIMINIT` environment variable. This variable must point to
the `vimrc` file declared in this repsitory. It is recommended to clone the
content of this repository in the `~/.config/vimrc` directory. This follows [The
XDG Base Directory Speficification].```text
curl --proto '=https' --tlsv1.2 -sSf \
https://raw.githubusercontent.com/jorgepiloto/nvim/main/INSTALL | sh
```Consider adding the `$VIMINIT` variable in your `$SHELL` dotfiles. This will
ensure that the variable is defined everytime you start a new shell session.## Structure and files
```
./jorgepiloto/vimrc
├── LICENSE # The license ruling this project
├── README.md # Basic info about his project
├── VERSION # Version status of this project
├── ftplugin # Particular config for file types
├── pack # Extra packages or plugins
├── plugin # Plugin configuration
└── vimrc # Main configuration file for Vim
```## References
* Vim's official webpage: https://www.vim.org/
* Vim's repository: https://github.com/vim/vim[The XDG Base Directory Speficification]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html