From 1fc5ac84f31ec3d3008108641da391a5deaab3f7 Mon Sep 17 00:00:00 2001
From: Darius Auding <Darius.auding@gmx.de>
Date: Sat, 26 Aug 2023 23:05:21 +0200
Subject: [PATCH] some minor changes

---
 lua/codecraft/core/neovide.lua     | 2 +-
 lua/codecraft/plugin/telescope.lua | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/lua/codecraft/core/neovide.lua b/lua/codecraft/core/neovide.lua
index 388ac71..beb8080 100644
--- a/lua/codecraft/core/neovide.lua
+++ b/lua/codecraft/core/neovide.lua
@@ -5,7 +5,7 @@ if vim.g.neovide then
 
 	-- Helper function for transparency formatting
 	local alpha = function()
-		return string.format("%x", math.floor((255 * vim.g.transparency) or 0.899))
+		return string.format("%x", math.floor((255 * vim.g.transparency)))
 	end
 	-- g:neovide_transparency should be 0 if you want to unify transparency of content and title bar.
 	vim.g.neovide_transparency = 0.6
diff --git a/lua/codecraft/plugin/telescope.lua b/lua/codecraft/plugin/telescope.lua
index 03db441..5e19b22 100644
--- a/lua/codecraft/plugin/telescope.lua
+++ b/lua/codecraft/plugin/telescope.lua
@@ -41,6 +41,9 @@ require('telescope').setup {
     colorscheme = {
       enable_preview = true,
     },
+    find_files = {
+      hidden = true
+    }
   },
 }
 -- Enable telescope fzf native, if installed
-- 
GitLab