change breakpoint icon

This commit is contained in:
Vladan Popovic 2024-11-03 19:53:47 +01:00
parent b48b531d3d
commit 7dfe2ca68b
2 changed files with 3 additions and 0 deletions

View file

@ -32,6 +32,8 @@ vim.keymap.set({'n', 'v'}, '<Leader>dp', function() require('dap.ui.widgets').pr
vim.keymap.set('n', '<Leader>df', function() local widgets = require('dap.ui.widgets') widgets.centered_float(widgets.frames) end)
vim.keymap.set('n', '<Leader>ds', function() local widgets = require('dap.ui.widgets') widgets.centered_float(widgets.scopes) end)
vim.fn.sign_define('DapBreakpoint', {text='󰬪', texthl='', linehl='', numhl=''})
-- Set up lldb (LLVM debugger)
-- Install archlinux: sudo pacman -S lldb
-- Install ubuntu: sudo apt

View file

@ -3,6 +3,7 @@ require('plugins.packer_setup')
require('packer').startup(function()
-- Packer can manage itself as an optional plugin
use { 'wbthomason/packer.nvim', opt = true }
use { 'glepnir/nerdicons.nvim', cmd = 'NerdIcons', config = function() require('nerdicons').setup({}) end }
-- Fuzzy finder
use {