Skip to content
This repository was archived by the owner on Aug 31, 2024. It is now read-only.
/ neovim-config Public archive
generated from tokiory/neovim-boilerplate

My neovim configuration files.

License

Notifications You must be signed in to change notification settings

4ngelf/neovim-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

107 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neovim configuration

Lua version lazy version

Warning

Archive notice: I am going to rework the configuration using the rocks.nvim package manager. Since I have this oportunity I also want to make a configuration (or distro) that is platform-agnostic, modular and RPC friendly by following some conventions and standards with the goal set for a more scalable and robust configuration.

Preview nvim

Inspiration

Use it

You can use this template with the following command:

[ -d "$HOME/.config/nvim" ] && mv $HOME/.config/{nvim,nvim.old}; \
    git clone https://github.com/4ngelf/neovim-config $HOME/.config/nvim

Install providers

You can install plugins and providers automatically with this command

cd "$HOME/.config/nvim" && make

Dependencies

Structure

.
├── init.lua                  -- Entry point
├── makefile                  -- List of tasks for configuration management
│
├── lua/
│  ├── config/                -- Neovim configuration
│  │  ├── autocmd.lua         -- Custom autocommands
│  │  ├── globals.lua         -- Global variables
│  │  ├── init.lua            -- Configuration entry point
│  │  ├── keymaps.lua         -- Custom keyboard helpers
│  │  └── options.lua         -- Settings for Neovim
│  │
│  ├── plugins/               -- Plugin configurations by category
│  │
│  ├── util/                  -- Utility modules
│  │
│  ├── lazy-bootstrap.lua     -- Lazy bootstrapper
│  └── postconfig.lua         -- Execute after configuration
├── README.md
└── lazy-lock.json

Packed Plugins

License

MIT License

About

My neovim configuration files.

Topics

Resources

License

Stars

Watchers

Forks