aboutsummaryrefslogtreecommitdiff
path: root/lua/startup/themes/dashboard.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/startup/themes/dashboard.lua')
-rw-r--r--lua/startup/themes/dashboard.lua138
1 files changed, 69 insertions, 69 deletions
diff --git a/lua/startup/themes/dashboard.lua b/lua/startup/themes/dashboard.lua
index 817ab17..8f0ef30 100644
--- a/lua/startup/themes/dashboard.lua
+++ b/lua/startup/themes/dashboard.lua
@@ -1,75 +1,75 @@
local settings = {
- -- every line should be same width without escaped \
- header = {
- type = "text",
- oldfiles_directory = false,
- align = "center",
- fold_section = false,
- title = "Header",
- margin = 5,
- content = {
- " ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗",
- " ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║",
- " ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║",
- " ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║",
- " ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║",
- " ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝",
+ -- every line should be same width without escaped \
+ header = {
+ type = "text",
+ oldfiles_directory = false,
+ align = "center",
+ fold_section = false,
+ title = "Header",
+ margin = 5,
+ content = {
+ " ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗",
+ " ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║",
+ " ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║",
+ " ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║",
+ " ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║",
+ " ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝",
+ },
+ highlight = "Statement",
+ default_color = "",
+ oldfiles_amount = 0,
},
- highlight = "Statement",
- default_color = "",
- oldfiles_amount = 0,
- },
- -- name which will be displayed and command
- body = {
- type = "mapping",
- oldfiles_directory = false,
- align = "center",
- fold_section = false,
- 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" },
+ -- name which will be displayed and command
+ body = {
+ type = "mapping",
+ oldfiles_directory = false,
+ align = "center",
+ fold_section = false,
+ 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" },
+ },
+ highlight = "String",
+ default_color = "",
+ oldfiles_amount = 0,
+ },
+ footer = {
+ type = "text",
+ oldfiles_directory = false,
+ align = "center",
+ fold_section = false,
+ title = "Footer",
+ margin = 5,
+ content = { "startup.nvim" },
+ highlight = "Number",
+ default_color = "",
+ oldfiles_amount = 0,
},
- highlight = "String",
- default_color = "",
- oldfiles_amount = 0,
- },
- footer = {
- type = "text",
- oldfiles_directory = false,
- align = "center",
- fold_section = false,
- title = "Footer",
- margin = 5,
- content = { "startup.nvim" },
- highlight = "Number",
- default_color = "",
- oldfiles_amount = 0,
- },
- options = {
- mapping_keys = true,
- cursor_column = 0.5,
- empty_lines_between_mappings = true,
- disable_statuslines = true,
- paddings = { 1, 3, 3, 0 },
- },
- 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", "footer" },
+ options = {
+ mapping_keys = true,
+ cursor_column = 0.5,
+ empty_lines_between_mappings = true,
+ disable_statuslines = true,
+ paddings = { 1, 3, 3, 0 },
+ },
+ 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", "footer" },
}
return settings