change breakpoint icon
This commit is contained in:
parent
b48b531d3d
commit
7dfe2ca68b
2 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue