From 923265371f917126b41deb992ae3e82dc103bf43 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 1 Jan 2024 21:44:47 +0100 Subject: [PATCH] chore(README.md): add important note about compatibility with Apple Silicon and removal of incompatible plugins docs(README.md): explain the components of the project, including the package manager and the use of the after directory for plugin configuration --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 77af140..ac64b38 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,16 @@ coding conventions. Feel free to try it out if you fancy 😄. 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.