This commit is contained in:
ZaneFerns360 2024-04-30 12:20:00 +05:30
parent 33094f882b
commit 7167430d58
2 changed files with 27 additions and 19 deletions

View File

@ -4,6 +4,22 @@ local dash = {
event = 'VimEnter', event = 'VimEnter',
opts = function() opts = function()
local logo = [[ local logo = [[
@@@@@@ @@@@@@
@@@@@@@@@@@ @@@@@@@@@@@
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@
@@@@@@ @@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@ @@@@ @@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@ @@@@ @@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@ @@@@@@
@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@
@@@@@@@@@@@ @@@@@@@@@@@
@@@@@@ @@@@@@
@ -14,7 +30,16 @@ local dash = {
]] ]]
logo = string.rep('\n', 8) .. logo .. '\n\n' local logo2 = [[
]]
logo = string.rep('\n', 2) .. logo .. '\n\n'
local opts = { local opts = {
theme = 'doom', theme = 'doom',

View File

@ -3,7 +3,7 @@ local navigation = {
'stevearc/dressing.nvim', 'stevearc/dressing.nvim',
{ {
'max397574/better-escape.nvim', 'max397574/better-escape.nvim',
event = 'InsertEnter', event = 'VeryLazy',
config = function() config = function()
require('better_escape').setup() require('better_escape').setup()
end, end,
@ -25,23 +25,6 @@ local navigation = {
{ '<c-\\>', '<cmd><C-U>TmuxNavigatePrevious<cr>' }, { '<c-\\>', '<cmd><C-U>TmuxNavigatePrevious<cr>' },
}, },
}, },
{
'christoomey/vim-tmux-navigator',
cmd = {
'TmuxNavigateLeft',
'TmuxNavigateDown',
'TmuxNavigateUp',
'TmuxNavigateRight',
'TmuxNavigatePrevious',
},
keys = {
{ '<c-h>', '<cmd><C-U>TmuxNavigateLeft<cr>' },
{ '<c-j>', '<cmd><C-U>TmuxNavigateDown<cr>' },
{ '<c-k>', '<cmd><C-U>TmuxNavigateUp<cr>' },
{ '<c-l>', '<cmd><C-U>TmuxNavigateRight<cr>' },
{ '<c-\\>', '<cmd><C-U>TmuxNavigatePrevious<cr>' },
},
},
} }
return navigation return navigation