From 0e87bcc2f68ba64e96d96d181001d781bbe4ae0c Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Sun, 29 Jan 2023 22:08:41 +0000 Subject: [PATCH] chore(repo): Initial commit Starting the repo off with a boring and basic commit --- .gitignore | 1 + Readme.md | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 Readme.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c84aa4a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +plugin/packer_compiled.lua diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..7a5c93e --- /dev/null +++ b/Readme.md @@ -0,0 +1,26 @@ +# Nvim-Config-3 + +Attempt 3 at making a stable and minimal neovim configuration. +My main goal is to remove any technical debt and almost start fresh. + +This could get interesting.. + +## Modules + +### `sherlock5512.utilities.lua` + +This is my set of utility functions used throughout my config. + +#### `require_modules` + +This function is used where I need to have many modules for one specific thing. +It loads the modules for you and returns a table of loaded modules if successful. +Otherwise it returns `nil` + +## Plugins + +TODO + +## General notes + +TODO