diff options
author | max397574 <[email protected]> | 2021-10-06 18:35:23 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-06 18:35:23 +0200 |
commit | 8c67e6444b26dbb77ad32f41e34e3bfdda2bedae (patch) | |
tree | af03cc99ff871367b447f987d24b525011ba1930 /lua/startup/themes | |
parent | fd7efe5a5d11a4b5bf3caaad684cd2b9acc4059e (diff) |
feat(themes): ✨added default
Diffstat (limited to 'lua/startup/themes')
-rw-r--r-- | lua/startup/themes/default.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/lua/startup/themes/default.lua b/lua/startup/themes/default.lua new file mode 100644 index 0000000..3db5eb5 --- /dev/null +++ b/lua/startup/themes/default.lua @@ -0,0 +1,40 @@ +local settings = { + -- every line should be same width without escaped \ + header = { + " /$$ ", + " |__/ ", + " /$$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$ /$$ /$$$$$$/$$$$ ", + "| $$__ $$ /$$__ $$ /$$__ $$| $$ /$$/| $$| $$_ $$_ $$", + "| $$ \\ $$| $$$$$$$$| $$ \\ $$ \\ $$/$$/ | $$| $$ \\ $$ \\ $$", + "| $$ | $$| $$_____/| $$ | $$ \\ $$$/ | $$| $$ | $$ | $$", + "| $$ | $$| $$$$$$$| $$$$$$/ \\ $/ | $$| $$ | $$ | $$", + "|__/ |__/ \\_______/ \\______/ \\_/ |__/|__/ |__/ |__/", + }, + -- name which will be displayed and command + tools = { + [" 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" }, + [" Config Files"] = { + 'lua require("telescope.builtin").find_files({cwd="~/.config"})', + "<leader>cf", + }, + [" Colorschemes"] = { "Telescope colorscheme", "<leader>cs" }, + [" New File"] = { "lua require'startup'.new_file()", "<leader>nf" }, + ["ﲉ Help Files"] = { "Telescope help_tags", "<leader>fh" }, + }, + options = { + align = "center", -- center, left or right + mapping_names = true, + -- can be an integer (columns) + -- float < 1 -> percentage of screen width + padding = 5, -- only used if align left or right + }, + colors = { + background = "#1f2227", + heading_fg = "#009900", + tools_fg = "#009900", + }, +} +return settings |