diff options
Diffstat (limited to 'lua/startup/themes')
-rw-r--r-- | lua/startup/themes/dashboard.lua | 24 | ||||
-rw-r--r-- | lua/startup/themes/startify.lua | 12 |
2 files changed, 18 insertions, 18 deletions
diff --git a/lua/startup/themes/dashboard.lua b/lua/startup/themes/dashboard.lua index b781fc9..817ab17 100644 --- a/lua/startup/themes/dashboard.lua +++ b/lua/startup/themes/dashboard.lua @@ -8,12 +8,12 @@ local settings = { title = "Header", margin = 5, content = { - ' ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗', - ' ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║', - ' ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║', - ' ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║', - ' ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║', - ' ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝', + " ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗", + " ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║", + " ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║", + " ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║", + " ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║", + " ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝", }, highlight = "Statement", default_color = "", @@ -28,12 +28,12 @@ local settings = { title = "Basic Commands", margin = 5, content = { - {" Find File", "Telescope find_files", "<leader>ff" }, - {" Find Word", "Telescope live_grep", "<leader>lg" }, - {" Recent Files", "Telescope oldfiles", "<leader>of" }, - {" File Browser", "Telescope file_browser", "<leader>fb" }, - {" Colorschemes", "Telescope colorscheme", "<leader>cs" }, - {" New File", "lua require'startup'.new_file()", "<leader>nf" }, + { " Find File", "Telescope find_files", "<leader>ff" }, + { " Find Word", "Telescope live_grep", "<leader>lg" }, + { " Recent Files", "Telescope oldfiles", "<leader>of" }, + { " File Browser", "Telescope file_browser", "<leader>fb" }, + { " Colorschemes", "Telescope colorscheme", "<leader>cs" }, + { " New File", "lua require'startup'.new_file()", "<leader>nf" }, }, highlight = "String", default_color = "", diff --git a/lua/startup/themes/startify.lua b/lua/startup/themes/startify.lua index bcb50e5..7e743e9 100644 --- a/lua/startup/themes/startify.lua +++ b/lua/startup/themes/startify.lua @@ -8,13 +8,13 @@ if not user_bookmarks then bookmark_texts = {} end - for key, file in pairs(user_bookmarks) do - bookmark_texts[#bookmark_texts + 1] = key .. " " .. file - end +for key, file in pairs(user_bookmarks) do + bookmark_texts[#bookmark_texts + 1] = key .. " " .. file +end - for key, file in pairs(user_bookmarks) do - user_bookmark_mappings[key] = "<cmd>e " .. file .. "<CR>" - end +for key, file in pairs(user_bookmarks) do + user_bookmark_mappings[key] = "<cmd>e " .. file .. "<CR>" +end local cow = { " \\ ^__^", " \\ (oo)\\_______", |