David Ibia 979f229157 chore(init.lua): remove unnecessary lines and disable loading of Perl and Ruby providers
The lines `vim.g.loaded_perl_provider = 0` and `vim.g.loaded_ruby_provider = 0` were removed as they are unnecessary and not being used. This change improves the cleanliness of the code.

Additionally, the lines `-` were removed as they were empty and not serving any purpose.
2024-01-14 03:11:26 +01:00

Absolute VIM Configuration

Introduction

Here's the VIM configuration I'm going to be using for most of my professional work this year. There may be changes as I discover new plugins. I intent to personalize this to my taste and coding conventions. Feel free to try it out if you fancy 😄.

Installation


git clone https://github.com/boxpositron/absolute-vim ~/.config/nvim --depth 1 && nvim

Important

I built this to be compatible with Apple Silicon. It should work with other platforms. I've just removed any incompatible plugins.

Components

Package Manager

I'm using lazy.nvim to manage all the packages. I setup the project to use the after directory as well. Lazy does not need to use this but I set it up incase you want to switch to a different package manager like packer. You'll notice I require the plugin file from after in the config function for the plugin. It's worked for me and it keeps things organized.

Description
No description provided
Readme 295 KiB
Languages
Lua 100%