diff --git a/lua/codecraft/core/neovide.lua b/lua/codecraft/core/neovide.lua index 388ac715cec82264dc207478e84112055768553a..beb8080375ab77ac8bf6d315548fe21e53bc963f 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 03db4413d3ef8945eec88d50903f7f95606b8a23..5e19b2265790d926aecd00f071551f4db4e66043 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