summaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl')
-rw-r--r--fnl/config/autocmd.fnl2
-rw-r--r--fnl/config/lsp/handlers.fnl1
-rw-r--r--fnl/config/lsp/init.fnl2
-rw-r--r--fnl/config/lsp/lsp-installer.fnl2
-rw-r--r--fnl/config/nvim-tree.fnl2
5 files changed, 5 insertions, 4 deletions
diff --git a/fnl/config/autocmd.fnl b/fnl/config/autocmd.fnl
index ab933ba..a3b58d1 100644
--- a/fnl/config/autocmd.fnl
+++ b/fnl/config/autocmd.fnl
@@ -1,4 +1,4 @@
-;; A customizable greeter.
+;; Autocommands for nvim.
(module config.autocmd
{autoload {nvim aniseed.nvim
a aniseed.core
diff --git a/fnl/config/lsp/handlers.fnl b/fnl/config/lsp/handlers.fnl
index ab2f1e0..34e1ac7 100644
--- a/fnl/config/lsp/handlers.fnl
+++ b/fnl/config/lsp/handlers.fnl
@@ -1,3 +1,4 @@
+;; Handlers for the requests and responses from and to the lsp server.
(module config.lsp.handlers
{autoload {util util
nvim aniseed.nvim}})
diff --git a/fnl/config/lsp/init.fnl b/fnl/config/lsp/init.fnl
index dc95140..8e23202 100644
--- a/fnl/config/lsp/init.fnl
+++ b/fnl/config/lsp/init.fnl
@@ -1,4 +1,4 @@
-;; Loads the LSP module.
+;; Loads the LSP functionality.
(module config.lsp.init
{autoload {util util}})
diff --git a/fnl/config/lsp/lsp-installer.fnl b/fnl/config/lsp/lsp-installer.fnl
index 21afd5d..42115c0 100644
--- a/fnl/config/lsp/lsp-installer.fnl
+++ b/fnl/config/lsp/lsp-installer.fnl
@@ -1,4 +1,4 @@
-;; LSP installer.
+;; Loads default handlers and specific language settings.
(module config.lsp.lsp-installer
{autoload {util util}})
diff --git a/fnl/config/nvim-tree.fnl b/fnl/config/nvim-tree.fnl
index cf568c0..de8f316 100644
--- a/fnl/config/nvim-tree.fnl
+++ b/fnl/config/nvim-tree.fnl
@@ -1,4 +1,4 @@
-;; A file explorer.
+;; A vertical sidebar file explorer.
(module config.nvim-tree
{autoload {util util
nvim aniseed.nvim}})