From 341c3be75228dbd23fd05208d148acecf950d573 Mon Sep 17 00:00:00 2001
From: Jacob Janzen <jjanzenn@proton.me>
Date: Wed, 7 Aug 2024 14:58:48 -0500
Subject: initial commit

---
 config/nvim/init.org | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 config/nvim/init.org

(limited to 'config/nvim/init.org')

diff --git a/config/nvim/init.org b/config/nvim/init.org
new file mode 100644
index 0000000..703e8e2
--- /dev/null
+++ b/config/nvim/init.org
@@ -0,0 +1,37 @@
+#+title: Neovim Settings
+This is the entry point for my Neovim configuration.
+
+Disable timeout to speed things up.
+#+begin_src lua :tangle yes
+vim.cmd([[set notimeout]])
+#+end_src
+
+Install plugins in the [[./lua/plugins.org][plugins.lua]] file.
+#+begin_src lua :tangle yes
+require('plugins')
+#+end_src
+
+Set up behaviour in the [[./lua/behaviour.org][behaviour.lua]] file.
+#+begin_src lua :tangle yes
+require('behaviour')
+#+end_src
+
+Set up appearance in the [[./lua/appearance.org][appearance.lua]] file.
+#+begin_src lua :tangle yes
+require('appearance')
+#+end_src
+
+Set up formatting options in the [[./lua/format.org][format.lua]] file.
+#+begin_src lua :tangle yes
+require('format')
+#+end_src
+
+Set up language servers in the [[./lua/languageServers.org][languageServers.lua]] file.
+#+begin_src lua :tangle yes
+require('languageServers')
+#+end_src
+
+Set up auto-complete in the [[./lua/autocomplete.org][autocomplete.lua]] file.
+#+begin_src lua :tangle yes
+require('autocomplete')
+#+end_src
-- 
cgit v1.2.3