From 4e36594907577543d426a1d64bdff964214464bf Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 1 Jan 2024 21:38:22 +0100 Subject: [PATCH] chore: add .env to .gitignore file to exclude it from version control docs: add README.md file with an introduction, installation instructions, and personalization note for Absolute VIM Configuration --- .gitignore | 1 + README.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/README.md b/README.md new file mode 100644 index 0000000..77af140 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# 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 + +```bash + +git clone https://github.com/boxpositron/absolute-vim ~/.config/nvim --depth 1 && nvim + +```