mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
5d326673e077baeb6d8078a819aef4e40bd1b4d3
This commit adds support for the todo-comments plugin. It includes the following changes: - Added a new file `todo-comments.lua` in the `lua/absolute/after` directory. - Imported the `todo-comments` module. - Set up the `todo-comments` plugin with default options. - Defined key mappings for jumping to previous and next todo comments. - Defined key mappings for opening comments in Telescope and Trouble. - Added a new file `todo-comments.lua` in the `lua/absolute/plugins` directory. - Exported a table with the configuration for the `todo-comments` plugin, including its dependencies and a config function that requires the `absolute.after.todo-comments` module.
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
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.
TODO: List out Plugins
Description
Languages
Lua
100%