updates
This commit is contained in:
parent
f0a205be54
commit
608c974731
5 changed files with 26 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
|||
column_width = 120
|
||||
column_width = 180
|
||||
line_endings = "Unix"
|
||||
indent_type = "Spaces"
|
||||
indent_width = 2
|
||||
|
|
1
init.lua
1
init.lua
|
@ -1,2 +1,3 @@
|
|||
return {
|
||||
lsp = { formatting = { format_on_save = false } },
|
||||
}
|
||||
|
|
|
@ -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
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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...
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue