This commit is contained in:
jordanyono 2025-10-27 23:28:56 -04:00
parent e01be2e14a
commit 6bd14e2537
3 changed files with 48 additions and 32 deletions

View File

@ -339,27 +339,6 @@ require('lazy').setup({
end,
},
},
{
'nvim-neo-tree/neo-tree.nvim',
version = '*',
dependencies = {
'nvim-lua/plenary.nvim',
'MunifTanjim/nui.nvim',
'nvim-tree/nvim-web-devicons',
},
lazy = false,
opts = {
filesystem = {
visible = false,
window = {
mappings = {
['.'] = 'set_root', -- Set current directory as root
['H'] = 'toggle_hidden', -- Toggle hidden files with 'H'
},
},
},
},
},
-- NOTE: Plugins can also be configured to run Lua code when they are loaded.
--
-- This is often very useful to both group configuration, as well as handle

View File

@ -2,4 +2,41 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
{
'mistweaverco/kulala.nvim',
keys = {
{ '<leader>Rs', desc = 'Send request' },
{ '<leader>Ra', desc = 'Send all requests' },
{ '<leader>Rb', desc = 'Open scratchpad' },
},
ft = { 'http', 'rest' },
opts = {
-- your configuration comes here
global_keymaps = false,
global_keymaps_prefix = '<leader>R',
kulala_keymaps_prefix = '',
},
},
{
'nvim-neo-tree/neo-tree.nvim',
version = '*',
dependencies = {
'nvim-lua/plenary.nvim',
'MunifTanjim/nui.nvim',
'nvim-tree/nvim-web-devicons',
},
lazy = false,
opts = {
filesystem = {
visible = false,
window = {
mappings = {
['.'] = 'set_root', -- Set current directory as root
['H'] = 'toggle_hidden', -- Toggle hidden files with 'H'
},
},
},
},
},
}

View File

@ -121,16 +121,16 @@ return {
}
-- Change breakpoint icons
-- vim.api.nvim_set_hl(0, 'DapBreak', { fg = '#e51400' })
-- vim.api.nvim_set_hl(0, 'DapStop', { fg = '#ffcc00' })
-- local breakpoint_icons = vim.g.have_nerd_font
-- and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' }
-- or { Breakpoint = '●', BreakpointCondition = '⊜', BreakpointRejected = '⊘', LogPoint = '◆', Stopped = '⭔' }
-- for type, icon in pairs(breakpoint_icons) do
-- local tp = 'Dap' .. type
-- local hl = (type == 'Stopped') and 'DapStop' or 'DapBreak'
-- vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl })
-- end
vim.api.nvim_set_hl(0, 'DapBreak', { fg = '#e51400' })
vim.api.nvim_set_hl(0, 'DapStop', { fg = '#ffcc00' })
local breakpoint_icons = vim.g.have_nerd_font
and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' }
or { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' }
for type, icon in pairs(breakpoint_icons) do
local tp = 'Dap' .. type
local hl = (type == 'Stopped') and 'DapStop' or 'DapBreak'
vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl })
end
dap.listeners.after.event_initialized['dapui_config'] = dapui.open
dap.listeners.before.event_terminated['dapui_config'] = dapui.close