diff --git a/init.lua b/init.lua index 0ddb7b1..c49fa50 100644 --- a/init.lua +++ b/init.lua @@ -1,10 +1,4 @@ require("config.lazy") require("config.settings") -local neopywal = require("neopywal") -neopywal.setup({ - transparent_background = true, - terminal_colors = true, - show_end_of_buffer = false, -}) vim.cmd.colorscheme("neopywal") diff --git a/lua/config/plugins/dashboard.lua b/lua/config/plugins/dashboard.lua new file mode 100644 index 0000000..c5c1719 --- /dev/null +++ b/lua/config/plugins/dashboard.lua @@ -0,0 +1,16 @@ +config = { + center = { + { + icon = '', + icon_hl = 'group', + desc = 'description', + desc_hl = 'group', + key = 'shortcut key in dashboard buffer not keymap !!', + key_hl = 'group', + key_format = ' [%s]', -- `%s` will be substituted with value of `key` + action = '', + }, + }, + footer = {}, + vertical_center = false, -- Center the Dashboard on the vertical (from top to bottom) +} diff --git a/lua/config/settings.lua b/lua/config/settings.lua index e9a44d1..5633d0c 100644 --- a/lua/config/settings.lua +++ b/lua/config/settings.lua @@ -31,7 +31,7 @@ o.splitright = true o.splitbelow = true o.termguicolors = true -opt.shortmess:append "sI" +-- opt.shortmess:append "sI" opt.whichwrap:append "<>[]hl" opt.fillchars = { eob = " " } diff --git a/lua/plugins/neotree.lua b/lua/plugins/neotree.lua index e826858..2723273 100644 --- a/lua/plugins/neotree.lua +++ b/lua/plugins/neotree.lua @@ -6,6 +6,9 @@ return { "nvim-tree/nvim-web-devicons", "MunifTanjim/nui.nvim", -- "3rd/image.nvim", -- Optional see `# Preview Mode` for more information + }, + opts = { + vim.keymap.set('n', '', 'Neotree toggle') } } } diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua index 42a62d9..d4dbfe8 100644 --- a/lua/plugins/ui.lua +++ b/lua/plugins/ui.lua @@ -1,8 +1,22 @@ return { + { + "nvimdev/dashboard-nvim", + event = "VimEnter", + dependencies = { "nvim-tree/nvim-web-devicons"}, + config = function() + require('dashboard').setup { + require "config.plugins.dashboard" + } + end, + }, { "RedsXDD/neopywal.nvim", name = "neopywal", - opts = {}, + opts = { + transparent_background = true, + terminal_colors = true, + show_end_of_buffer = false, + }, }, { -- Lua status-bar diff --git a/spell/en.utf-8.spl b/spell/en.utf-8.spl new file mode 100644 index 0000000..e4b1e1c Binary files /dev/null and b/spell/en.utf-8.spl differ diff --git a/spell/en.utf-8.sug b/spell/en.utf-8.sug new file mode 100644 index 0000000..103ebfc Binary files /dev/null and b/spell/en.utf-8.sug differ diff --git a/spell/es.utf-8.spl b/spell/es.utf-8.spl new file mode 100644 index 0000000..505c4d3 Binary files /dev/null and b/spell/es.utf-8.spl differ diff --git a/spell/es.utf-8.sug b/spell/es.utf-8.sug new file mode 100644 index 0000000..6c65c5f Binary files /dev/null and b/spell/es.utf-8.sug differ