diff --git a/lua/custom/plugins/dashboard.lua b/lua/custom/plugins/dashboard.lua index d201c1af..5229ff64 100644 --- a/lua/custom/plugins/dashboard.lua +++ b/lua/custom/plugins/dashboard.lua @@ -30,15 +30,6 @@ local dash = { ]] - local logo2 = [[ -████████╗███████╗ ██████╗██╗ ██╗ ████████╗██╗███████╗████████╗ █████╗ ███╗ ██╗███████╗ -╚══██╔══╝██╔════╝██╔════╝██║ ██║ ╚══██╔══╝██║██╔════╝╚══██╔══╝██╔══██╗████╗ ██║██╔════╝ - ██║ █████╗ ██║ ███████║█████╗██║ ██║█████╗ ██║ ███████║██╔██╗ ██║███████╗ - ██║ ██╔══╝ ██║ ██╔══██║╚════╝██║ ██║██╔══╝ ██║ ██╔══██║██║╚██╗██║╚════██║ - ██║ ███████╗╚██████╗██║ ██║ ██║ ██║███████╗ ██║ ██║ ██║██║ ╚████║███████║ - ╚═╝ ╚══════╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝ - - ]] logo = string.rep('\n', 1) .. logo .. '\n' local opts = { diff --git a/lua/custom/plugins/hypr.lua b/lua/custom/plugins/hypr.lua new file mode 100644 index 00000000..b62fd093 --- /dev/null +++ b/lua/custom/plugins/hypr.lua @@ -0,0 +1,7 @@ +local hypr = { + vim.filetype.add { + pattern = { ['.*/hypr/.*%.conf'] = 'hyprlang' }, + }, +} + +return hypr diff --git a/lua/custom/plugins/lazygit.lua b/lua/custom/plugins/lazygit.lua index d0864dc9..a6d48237 100644 --- a/lua/custom/plugins/lazygit.lua +++ b/lua/custom/plugins/lazygit.lua @@ -16,7 +16,7 @@ local lg = { -- setting the keybinding for LazyGit with 'keys' is recommended in -- order to load the plugin when the command is run for the first time keys = { - { 'g', 'LazyGit', desc = 'LazyGit' }, + { 'gg', 'LazyGit', desc = 'LazyGit' }, }, }, }