diff options
author | max397574 <[email protected]> | 2022-01-15 20:39:29 +0100 |
---|---|---|
committer | max397574 <[email protected]> | 2022-01-15 20:39:29 +0100 |
commit | fefba0a70d8de780e5366e53baea9b4ca63b2698 (patch) | |
tree | 31dd6369f78847e2482e3a1e97b430efc6737383 /lua/startup/themes/startify.lua | |
parent | be883e02b3ca7b49f0fd338c35ecdb65ff44a2a6 (diff) |
chore: autoformat with stylua
Diffstat (limited to 'lua/startup/themes/startify.lua')
-rw-r--r-- | lua/startup/themes/startify.lua | 168 |
1 files changed, 84 insertions, 84 deletions
diff --git a/lua/startup/themes/startify.lua b/lua/startup/themes/startify.lua index 7e743e9..b9d1827 100644 --- a/lua/startup/themes/startify.lua +++ b/lua/startup/themes/startify.lua @@ -4,31 +4,31 @@ local bookmark_texts = { "Bookmarks", "" } local user_bookmark_mappings = {} if not user_bookmarks then - user_bookmarks = {} - bookmark_texts = {} + user_bookmarks = {} + bookmark_texts = {} end for key, file in pairs(user_bookmarks) do - bookmark_texts[#bookmark_texts + 1] = key .. " " .. file + bookmark_texts[#bookmark_texts + 1] = key .. " " .. file end for key, file in pairs(user_bookmarks) do - user_bookmark_mappings[key] = "<cmd>e " .. file .. "<CR>" + user_bookmark_mappings[key] = "<cmd>e " .. file .. "<CR>" end local cow = { - " \\ ^__^", - " \\ (oo)\\_______", - " (__)\\ )\\/\\", - " ||----w |", - " || ||", + " \\ ^__^", + " \\ (oo)\\_______", + " (__)\\ )\\/\\", + " ||----w |", + " || ||", } local quote = require("startup.functions").quote() while true do - if require("startup.utils").longest_line(quote) <= vim.o.columns - 15 then - break - end - quote = require("startup.functions").quote() + if require("startup.utils").longest_line(quote) <= vim.o.columns - 15 then + break + end + quote = require("startup.functions").quote() end local length = require("startup.utils").longest_line(quote) + 4 @@ -39,88 +39,88 @@ quote[#quote + 1] = "" table.insert(complete, "▛" .. string.rep("▀", length - 2) .. "▜") local function spaces(amount) - return string.rep(" ", amount) + return string.rep(" ", amount) end for _, line in ipairs(quote) do - table.insert( - complete, - "▌" .. " " .. line .. spaces(length - 3 - #line) .. "▐" - ) + table.insert( + complete, + "▌" .. " " .. line .. spaces(length - 3 - #line) .. "▐" + ) end table.insert(complete, "▙" .. string.rep("▄", length - 2) .. "▟") for _, line in ipairs(cow) do - complete[#complete + 1] = line + complete[#complete + 1] = line end -- NOTE: lua dump(vim.fn.expand("#<1")) to get newest oldfile local settings = { - header = { - type = "text", - oldfiles_directory = false, - align = "left", - fold_section = false, - title = "Header", - margin = 5, - content = complete, - highlight = "Statement", - default_color = "", - oldfiles_amount = 0, - }, - body = { - type = "oldfiles", - oldfiles_directory = false, - align = "left", - fold_section = false, - title = "Oldfiles", - margin = 5, - content = "", - highlight = "String", - default_color = "", - oldfiles_amount = 5, - }, - body_2 = { - type = "oldfiles", - oldfiles_directory = true, - align = "left", - fold_section = false, - title = "", - margin = 5, - content = "", - highlight = "String", - oldfiles_amount = 5, - }, - bookmarks = { - type = "text", - align = "left", - margin = 5, - content = bookmark_texts, - highlight = "String", - }, - options = { - after = function() - require("startup").create_mappings(user_bookmark_mappings) - require("startup.utils").oldfiles_mappings() - end, - mapping_keys = false, - cursor_column = 0.25, - empty_line_between_mappings = false, - disable_statuslines = true, - paddings = { 1, 1, 1, 1 }, - }, - mappings = { - execute_command = "<CR>", - open_file = "o", - open_file_split = "<c-o>", - open_section = "<TAB>", - open_help = "?", - }, - colors = { - background = "#1f2227", - folded_section = "#56b6c2", - }, - parts = { "header", "body", "body_2", "bookmarks" }, + header = { + type = "text", + oldfiles_directory = false, + align = "left", + fold_section = false, + title = "Header", + margin = 5, + content = complete, + highlight = "Statement", + default_color = "", + oldfiles_amount = 0, + }, + body = { + type = "oldfiles", + oldfiles_directory = false, + align = "left", + fold_section = false, + title = "Oldfiles", + margin = 5, + content = "", + highlight = "String", + default_color = "", + oldfiles_amount = 5, + }, + body_2 = { + type = "oldfiles", + oldfiles_directory = true, + align = "left", + fold_section = false, + title = "", + margin = 5, + content = "", + highlight = "String", + oldfiles_amount = 5, + }, + bookmarks = { + type = "text", + align = "left", + margin = 5, + content = bookmark_texts, + highlight = "String", + }, + options = { + after = function() + require("startup").create_mappings(user_bookmark_mappings) + require("startup.utils").oldfiles_mappings() + end, + mapping_keys = false, + cursor_column = 0.25, + empty_line_between_mappings = false, + disable_statuslines = true, + paddings = { 1, 1, 1, 1 }, + }, + mappings = { + execute_command = "<CR>", + open_file = "o", + open_file_split = "<c-o>", + open_section = "<TAB>", + open_help = "?", + }, + colors = { + background = "#1f2227", + folded_section = "#56b6c2", + }, + parts = { "header", "body", "body_2", "bookmarks" }, } return settings |