From cb237fd8aa19c4b7051833abfceaf785142e34ea Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Thu, 30 Mar 2023 00:27:26 -0500 Subject: [PATCH] updates --- init.lua | 1 + plugins/core.lua | 35 ++++++++++++++++++++--------------- plugins/user.lua | 22 +++++++++++++++++++++- 3 files changed, 42 insertions(+), 16 deletions(-) diff --git a/init.lua b/init.lua index 7c609b0..7bcce61 100644 --- a/init.lua +++ b/init.lua @@ -1,3 +1,4 @@ return { + colorscheme = "material", lsp = { formatting = { format_on_save = false } }, } diff --git a/plugins/core.lua b/plugins/core.lua index 0a888f1..acb6593 100644 --- a/plugins/core.lua +++ b/plugins/core.lua @@ -4,23 +4,28 @@ return { "goolord/alpha-nvim", opts = function(_, opts) -- customize the dashboard header + -- opts.section.header.val = { + -- ".-------. .-./`) ,---. .--. .-_'''-. ,-----. ________ .-'''-. ,---------. ,-----. .-------. ,---. ,---. .-'''-. ", + -- "| _ _ \\ \\ .-.')| \\ | | '_( )_ \\ .' .-, '. | | / _ \\\\ \\ .' .-, '. | _ _ \\ | \\ / | / _ \\", + -- "| ( ' ) | / `-' \\| , \\ | ||(_ o _)| ' / ,-.| \\ _ \\ | .----' (`' )/`--' `--. ,---'/ ,-.| \\ _ \\ | ( ' ) | | , \\/ , | (`' )/`--'", + -- "|(_ o _) / `-'`\"`| |\\_ \\| |. (_,_)/___| ; \\ '_ / | :| _|____ (_ o _). | \\ ; \\ '_ / | :|(_ o _) / | |\\_ /| |(_ o _). ", + -- "| (_,_).' __ .---. | _( )_\\ || | .-----.| _`,/ \\ _/ ||_( )_ | (_,_). '. :_ _: | _`,/ \\ _/ || (_,_).' __ | _( )_/ | | (_,_). '. ", + -- "| |\\ \\ | || | | (_ o _) |' \\ '- .': ( '\\_/ \\ ;(_ o._)__|.---. \\ : (_I_) : ( '\\_/ \\ ;| |\\ \\ | || (_ o _) | |.---. \\ :", + -- "| | \\ `' /| | | (_,_)\\ | \\ `-'` | \\ `\"/ \\ ) / |(_,_) \\ `-' | (_(=)_) \\ `\"/ \\ ) / | | \\ `' /| (_,_) | |\\ `-' |", + -- "| | \\ / | | | | | | \\ / '. \\_/``\".' | | \\ / (_I_) '. \\_/``\".' | | \\ / | | | | \\ / ", + -- "''-' `'-' '---' '--' '--' `'-...-' '-----' '---' `-...-' '---' '-----' ''-' `'-' '--' '--' `-...-' ", + -- " ██╗ ██████╗ ███████╗██╗ ██╗", + -- " ██║██╔═══██╗██╔════╝██║ ██║", + -- " ██║██║ ██║███████╗███████║", + -- " ██ ██║██║ ██║╚════██║██╔══██║", + -- " ╚█████╔╝╚██████╔╝███████║██║ ██║", + -- " ╚════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝", + -- } + opts.section.header.val = { - ".-------. .-./`) ,---. .--. .-_'''-. ,-----. ________ .-'''-. ,---------. ,-----. .-------. ,---. ,---. .-'''-. ", - "| _ _ \\ \\ .-.')| \\ | | '_( )_ \\ .' .-, '. | | / _ \\\\ \\ .' .-, '. | _ _ \\ | \\ / | / _ \\", - "| ( ' ) | / `-' \\| , \\ | ||(_ o _)| ' / ,-.| \\ _ \\ | .----' (`' )/`--' `--. ,---'/ ,-.| \\ _ \\ | ( ' ) | | , \\/ , | (`' )/`--'", - "|(_ o _) / `-'`\"`| |\\_ \\| |. (_,_)/___| ; \\ '_ / | :| _|____ (_ o _). | \\ ; \\ '_ / | :|(_ o _) / | |\\_ /| |(_ o _). ", - "| (_,_).' __ .---. | _( )_\\ || | .-----.| _`,/ \\ _/ ||_( )_ | (_,_). '. :_ _: | _`,/ \\ _/ || (_,_).' __ | _( )_/ | | (_,_). '. ", - "| |\\ \\ | || | | (_ o _) |' \\ '- .': ( '\\_/ \\ ;(_ o._)__|.---. \\ : (_I_) : ( '\\_/ \\ ;| |\\ \\ | || (_ o _) | |.---. \\ :", - "| | \\ `' /| | | (_,_)\\ | \\ `-'` | \\ `\"/ \\ ) / |(_,_) \\ `-' | (_(=)_) \\ `\"/ \\ ) / | | \\ `' /| (_,_) | |\\ `-' |", - "| | \\ / | | | | | | \\ / '. \\_/``\".' | | \\ / (_I_) '. \\_/``\".' | | \\ / | | | | \\ / ", - "''-' `'-' '---' '--' '--' `'-...-' '-----' '---' `-...-' '---' '-----' ''-' `'-' '--' '--' `-...-' ", - " ██╗ ██████╗ ███████╗██╗ ██╗", - " ██║██╔═══██╗██╔════╝██║ ██║", - " ██║██║ ██║███████╗███████║", - " ██ ██║██║ ██║╚════██║██╔══██║", - " ╚█████╔╝╚██████╔╝███████║██║ ██║", - " ╚════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝", + "", } + return opts end, }, diff --git a/plugins/user.lua b/plugins/user.lua index 9107f68..ab7b770 100644 --- a/plugins/user.lua +++ b/plugins/user.lua @@ -1,4 +1,24 @@ return { + { + "marko-cerovac/material.nvim", + config = function() + vim.g.material_style = "darker" + require("material").setup { + plugins = { + "dashboard", + "gitsigns", + "telescope", + "nvim-tree", + "which-key", + }, + + high_visibility = { + darker = true, + -- lighter = true, + } + } + end, + }, { "Pocco81/auto-save.nvim", event = "BufEnter", @@ -14,7 +34,7 @@ return { }, { "gioele/vim-autoswap", - event = "BufEnter" + event = "BufEnter", }, -- { -- "simrat39/inlay-hints.nvim",