diff --git a/.stylua.toml b/.stylua.toml index bfcffff..8ee3e4b 100644 --- a/.stylua.toml +++ b/.stylua.toml @@ -1,4 +1,4 @@ -column_width = 120 +column_width = 180 line_endings = "Unix" indent_type = "Spaces" indent_width = 2 diff --git a/init.lua b/init.lua index 97aeadd..7c609b0 100644 --- a/init.lua +++ b/init.lua @@ -1,2 +1,3 @@ return { + lsp = { formatting = { format_on_save = false } }, } diff --git a/options.lua b/options.lua index 6efd845..a5e744b 100644 --- a/options.lua +++ b/options.lua @@ -1,6 +1,6 @@ -- set vim options here (vim.. = value) return { opt = { - shell = "zsh -l" -- sets vim.opt.shell + -- shell = "zsh -l", -- sets vim.opt.shell }, } diff --git a/plugins/core.lua b/plugins/core.lua index ee43700..0a888f1 100644 --- a/plugins/core.lua +++ b/plugins/core.lua @@ -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, diff --git a/plugins/user.lua b/plugins/user.lua index b249ec6..9107f68 100644 --- a/plugins/user.lua +++ b/plugins/user.lua @@ -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... }