diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-10 19:33:58 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-10 19:33:58 +0200 |
commit | c97474bf7fbca1f23425b7ef79d6dc4eebe0ef5a (patch) | |
tree | 157fbe3742841cab9d5a55648b51f2f4b7f73af3 /lua | |
parent | be2e880fec29022e1aad6def61579c274bae60bd (diff) |
style: format
Diffstat (limited to 'lua')
-rw-r--r-- | lua/config/impatient.lua | 1 | ||||
-rw-r--r-- | lua/config/orgmode.lua | 1 | ||||
-rw-r--r-- | lua/config/project.lua | 1 |
3 files changed, 1 insertions, 2 deletions
diff --git a/lua/config/impatient.lua b/lua/config/impatient.lua index 2595ca1..431d785 100644 --- a/lua/config/impatient.lua +++ b/lua/config/impatient.lua @@ -1,5 +1,4 @@ -- Speeds up loading of lua modules. - local status_ok, impatient = pcall(require, "impatient") if not status_ok then return diff --git a/lua/config/orgmode.lua b/lua/config/orgmode.lua index 9f26189..5b88793 100644 --- a/lua/config/orgmode.lua +++ b/lua/config/orgmode.lua @@ -1,3 +1,4 @@ +-- Orgmode for nvim local status_ok, orgmode = pcall(require, "orgmode") if not status_ok then return diff --git a/lua/config/project.lua b/lua/config/project.lua index 738475c..60ba3a8 100644 --- a/lua/config/project.lua +++ b/lua/config/project.lua @@ -1,5 +1,4 @@ -- Provides project management. - local status_ok, project = pcall(require, "project_nvim") if not status_ok then return |