Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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