From 258dfc41ff24e2fba9e90e6a015274103d40ea4d Mon Sep 17 00:00:00 2001 From: ame Date: Tue, 22 Oct 2024 23:55:40 -0500 Subject: fixes --- fnl/settings.fnl | 2 +- init.fnl | 1 + plugin/0-tangerine.lua | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) 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) diff --git a/init.fnl b/init.fnl index 2ded39e..ed89bb6 100644 --- a/init.fnl +++ b/init.fnl @@ -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 = { -- cgit v1.2.3