summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugin_settings.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugin_settings.lua')
-rw-r--r--.config/nvim/lua/plugin_settings.lua41
1 files changed, 23 insertions, 18 deletions
diff --git a/.config/nvim/lua/plugin_settings.lua b/.config/nvim/lua/plugin_settings.lua
index a09bcac..fe43156 100644
--- a/.config/nvim/lua/plugin_settings.lua
+++ b/.config/nvim/lua/plugin_settings.lua
@@ -228,25 +228,30 @@ require('telescope').setup {
228require('telescope').load_extension('fzf') 228require('telescope').load_extension('fzf')
229-- }}} telescope -- 229-- }}} telescope --
230 230
231-- dashboard {{{ -- 231-- alpha-nvim {{{ --
232g.dashboard_default_executive = 'telescope' 232local alpha = require ("alpha")
233g.dashboard_preview_command = 'cat' 233local startify = require ("alpha.themes.startify")
234g.dashboard_preview_file = '~/.config/nvim/neovim.cat' 234
235g.dashboard_preview_file_height = 13 235-- Set header
236g.dashboard_preview_file_width = 90 236startify.section.header.val = {
237g.dashboard_footer_icon = '💃 ' 237" ▄ ▄███▄ ████▄ ▄ ▄█ █▀▄▀█ ",
238 238" █ █▀ ▀ █ █ █ ██ █ █ █ ",
239g.dashboard_custom_shortcut = { 239"██ █ ██▄▄ █ █ █ █ ██ █ ▄ █ ",
240 last_session = '<leader> s l', 240"█ █ █ █▄ ▄▀ ▀████ █ █ ▐█ █ █ ",
241 find_history = '<leader> f h', 241"█ █ █ ▀███▀ █ █ ▐ █ ",
242 find_file = '<leader> f f', 242"█ ██ █▐ ▀ ",
243 new_file = '<leader> c n', 243" ▐ ",
244 change_colorscheme = '<leader> t c',
245 find_word = '<leader> f a',
246 book_marks = '<leader> f b',
247} 244}
248 245
249-- }}} dashboard -- 246startify.section.footer = {
247 { type = "text", val = "footer" },
248}
249
250-- Send config to alpha
251alpha.setup(startify.opts)
252
253
254-- }}} alpha-nvim --
250 255
251-- treesitter {{{ -- 256-- treesitter {{{ --
252 257
@@ -360,7 +365,7 @@ require("indent_blankline").setup {
360 show_current_context = true, 365 show_current_context = true,
361 char = "┊", 366 char = "┊",
362 buftype_exclude = {"terminal"}, 367 buftype_exclude = {"terminal"},
363 filetype_exclude = {"dashboard", "help", "ledger", "man"} 368 filetype_exclude = {"alpha", "help", "ledger", "man"}
364} 369}
365-- }}} indent-blankline -- 370-- }}} indent-blankline --
366 371