-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
146 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
home/dot_config/nvim/exact_lua/exact_config/exact_plugins/floaterm.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
---@type LazySpec | ||
return { | ||
{ | ||
'voldikss/vim-floaterm', | ||
cond = false, | ||
cmd = { | ||
'FloatermNew', | ||
'FloatermToggle', | ||
'FloatermNext', | ||
'FloatermPrev', | ||
'FloatermKill', | ||
}, | ||
keys = { | ||
{ '<leader>gl', 'FloatermNew lazygit' }, | ||
}, | ||
opts = {}, | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
home/dot_config/nvim/exact_lua/exact_config/exact_plugins/hurl.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
---@type LazySpec | ||
return { | ||
{ | ||
'jellydn/hurl.nvim', | ||
dependencies = { | ||
'MunifTanjim/nui.nvim', | ||
'nvim-lua/plenary.nvim', | ||
'nvim-treesitter/nvim-treesitter', | ||
}, | ||
ft = 'hurl', | ||
opts = { | ||
--Show Debugging info | ||
debug = false, | ||
--Show notifications on run | ||
show_notifications = true, | ||
--Show response in popup or split | ||
mode = 'split', | ||
--Formatters | ||
formatters = { | ||
json = { 'jq' }, | ||
html = { 'prettier', '--parser', 'html' }, | ||
}, | ||
}, | ||
keys = { | ||
-- HurlRunner | ||
{ '<leader>hA', '<cmd>HurlRunner<cr>', desc = 'Run All requests', ft = 'hurl' }, | ||
-- HurlRunnerAt | ||
{ '<leader>ha', '<cmd>HurlRunnerAt<cr>', desc = 'Run Api request', ft = 'hurl' }, | ||
-- HurlRunnerToEntry | ||
{ '<leader>hE', '<cmd>HurlRunnerToEntry<cr>', desc = 'Run to entry', ft = 'hurl' }, | ||
-- HurlVerbose | ||
{ '<leader>hv', '<cmd>HurlVerbose<cr>', desc = 'Run Api in verbose mode', ft = 'hurl' }, | ||
-- run in visual mode | ||
{ '<leader>hh', '<cmd>HurlRunner<cr>', desc = 'Run in visual mode', ft = 'hurl', mode = 'v' }, | ||
}, | ||
}, | ||
} |
18 changes: 18 additions & 0 deletions
18
home/dot_config/nvim/exact_lua/exact_config/exact_plugins/lazygit.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
---@type LazySpec | ||
return { | ||
'kdheepak/lazygit.nvim', | ||
cmd = { | ||
'LazyGit', | ||
'LazyGitConfig', | ||
'LazyGitCurrentFile', | ||
'LazyGitFilter', | ||
'LazyGitFilterCurrentFile', | ||
}, | ||
keys = { | ||
{ '<leader>gl', '<cmd>LazyGitCurrentFile<cr>', desc = 'LazyGit (current file)' }, | ||
}, | ||
-- optional for floating window border decoration | ||
dependencies = { | ||
'nvim-lua/plenary.nvim', | ||
}, | ||
} |
13 changes: 13 additions & 0 deletions
13
home/dot_config/nvim/exact_lua/exact_config/exact_plugins/vim-tmux-navigator.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
---@type LazySpec | ||
return { | ||
{ | ||
'christoomey/vim-tmux-navigator', | ||
cond = false, | ||
keys = { | ||
{ '<C-h>', '<cmd>TmuxNavigateLeft<cr>', desc = 'Go to left window' }, | ||
{ '<C-j>', '<cmd>TmuxNavigateDown<cr>', desc = 'Go to lower window' }, | ||
{ '<C-k>', '<cmd>TmuxNavigateUp<cr>', desc = 'Go to upper window' }, | ||
{ '<C-l>', '<cmd>TmuxNavigateRight<cr>', desc = 'Go to right window' }, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters