diff options
author | ame <[email protected]> | 2024-10-22 23:55:40 -0500 |
---|---|---|
committer | ame <[email protected]> | 2024-10-22 23:55:40 -0500 |
commit | 258dfc41ff24e2fba9e90e6a015274103d40ea4d (patch) | |
tree | 8f66a112cb9e3fa3d3d77195214de57ae4e7608a | |
parent | 6d322cff3f3ba0f58ada2656d365e77f10b4b292 (diff) |
fixes
-rw-r--r-- | fnl/settings.fnl | 2 | ||||
-rw-r--r-- | init.fnl | 1 | ||||
-rw-r--r-- | plugin/0-tangerine.lua | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/fnl/settings.fnl b/fnl/settings.fnl index 0a4178c..c41ce5f 100644 --- a/fnl/settings.fnl +++ b/fnl/settings.fnl @@ -2,7 +2,7 @@ (lambda _get [_ key] (local file (io.open (.. path key) :rb)) - (when (= file nil) nil) + (when (= file nil) (lua :return)) (local value (file:read :*a)) (io.close file) @@ -3,6 +3,7 @@ (packer-setup! {}) (global settings (require :settings)) + (require :keybinds) (require :defaults) (require :opt) diff --git a/plugin/0-tangerine.lua b/plugin/0-tangerine.lua index a47ac1b..0f0570d 100644 --- a/plugin/0-tangerine.lua +++ b/plugin/0-tangerine.lua @@ -32,6 +32,7 @@ end -- for git head bootstrap("https://github.com/udayvir-singh/hibiscus.nvim") +bootstrap("https://github.com/udayvir-singh/tangerine.nvim") require'tangerine'.setup{ compiler = { |