Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgepiloto/nvim
My personal Neovim configuration
https://github.com/jorgepiloto/nvim
Last synced: about 1 month ago
JSON representation
My personal Neovim configuration
- Host: GitHub
- URL: https://github.com/jorgepiloto/nvim
- Owner: jorgepiloto
- Created: 2022-07-03T17:06:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-23T08:26:46.000Z (over 1 year ago)
- Last Synced: 2023-05-23T09:29:14.306Z (over 1 year ago)
- Language: Lua
- Size: 57.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jorge's Neovim Configuration
This repository contains Jorge's Neovim configuration. The configuration focuses
on minimalism, efficiency, and productivity.## Installation
Install this configuration by executing the following command:
```text
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/jorgepiloto/nvim/main/INSTALL | sh
```## About NEovimg configuration
Neovim supports Lua, as opposite ot Vim, whcih only works with VimScript. Lua is
a minimalistic interepted language. This allwos to extend and customizae the
bahvior of Neovim in a very simple way.Noevim configuration follows [The XDG Specification], meaning that all its
dotfiles are found inside the `$XDG_CONFIG_HOME/nvim` directory. This folder
contains the following structure:```tree
nvim
├── init.lua
├── INSTALL
├── lua
│ ├── autocmd.lua
│ ├── keymaps.lua
│ └── packer-plugins.lua
├── plugin
│ ├── lsp-zero.lua
│ ├── packer_compiled.lua
│ ├── telescope.lua
│ └── toggleterm.lua
├── README.md
└── _static
└── neovim_logo.png
```[The XDG Specification]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html