This commit is contained in:
RingOfStorms (Joshua Bell) 2023-03-29 14:21:13 -05:00
parent f0a205be54
commit 608c974731
5 changed files with 26 additions and 18 deletions

View file

@ -1,4 +1,4 @@
column_width = 120
column_width = 180
line_endings = "Unix"
indent_type = "Spaces"
indent_width = 2

View file

@ -1,2 +1,3 @@
return {
lsp = { formatting = { format_on_save = false } },
}

View file

@ -1,6 +1,6 @@
-- set vim options here (vim.<first_key>.<second_key> = value)
return {
opt = {
shell = "zsh -l" -- sets vim.opt.shell
-- shell = "zsh -l", -- sets vim.opt.shell
},
}

View file

@ -5,12 +5,21 @@ return {
opts = function(_, opts)
-- customize the dashboard header
opts.section.header.val = {
" ██╗ ██████╗ ███████╗██╗ ██╗",
" ██║██╔═══██╗██╔════╝██║ ██║",
" ██║██║ ██║███████╗███████║",
"██ ██║██║ ██║╚════██║██╔══██║",
"╚█████╔╝╚██████╔╝███████║██║ ██║",
" ╚════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝",
".-------. .-./`) ,---. .--. .-_'''-. ,-----. ________ .-'''-. ,---------. ,-----. .-------. ,---. ,---. .-'''-. ",
"| _ _ \\ \\ .-.')| \\ | | '_( )_ \\ .' .-, '. | | / _ \\\\ \\ .' .-, '. | _ _ \\ | \\ / | / _ \\",
"| ( ' ) | / `-' \\| , \\ | ||(_ o _)| ' / ,-.| \\ _ \\ | .----' (`' )/`--' `--. ,---'/ ,-.| \\ _ \\ | ( ' ) | | , \\/ , | (`' )/`--'",
"|(_ o _) / `-'`\"`| |\\_ \\| |. (_,_)/___| ; \\ '_ / | :| _|____ (_ o _). | \\ ; \\ '_ / | :|(_ o _) / | |\\_ /| |(_ o _). ",
"| (_,_).' __ .---. | _( )_\\ || | .-----.| _`,/ \\ _/ ||_( )_ | (_,_). '. :_ _: | _`,/ \\ _/ || (_,_).' __ | _( )_/ | | (_,_). '. ",
"| |\\ \\ | || | | (_ o _) |' \\ '- .': ( '\\_/ \\ ;(_ o._)__|.---. \\ : (_I_) : ( '\\_/ \\ ;| |\\ \\ | || (_ o _) | |.---. \\ :",
"| | \\ `' /| | | (_,_)\\ | \\ `-'` | \\ `\"/ \\ ) / |(_,_) \\ `-' | (_(=)_) \\ `\"/ \\ ) / | | \\ `' /| (_,_) | |\\ `-' |",
"| | \\ / | | | | | | \\ / '. \\_/``\".' | | \\ / (_I_) '. \\_/``\".' | | \\ / | | | | \\ / ",
"''-' `'-' '---' '--' '--' `'-...-' '-----' '---' `-...-' '---' '-----' ''-' `'-' '--' '--' `-...-' ",
" ██╗ ██████╗ ███████╗██╗ ██╗",
" ██║██╔═══██╗██╔════╝██║ ██║",
" ██║██║ ██║███████╗███████║",
" ██ ██║██║ ██║╚════██║██╔══██║",
" ╚█████╔╝╚██████╔╝███████║██║ ██║",
" ╚════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝",
}
return opts
end,

View file

@ -1,14 +1,4 @@
return {
-- You can also add new plugins here as well:
-- Add plugins, the lazy syntax
-- "andweeb/presence.nvim",
-- {
-- "ray-x/lsp_signature.nvim",
-- event = "BufRead",
-- config = function()
-- require("lsp_signature").setup()
-- end,
-- },
{
"Pocco81/auto-save.nvim",
event = "BufEnter",
@ -22,4 +12,12 @@ return {
"Almo7aya/openingh.nvim",
event = "BufEnter",
},
{
"gioele/vim-autoswap",
event = "BufEnter"
},
-- {
-- "simrat39/inlay-hints.nvim",
-- },
-- This is not working so disabling for now...
}