update
This commit is contained in:
parent
c978f8ba5e
commit
1acf32e44c
2 changed files with 6 additions and 6 deletions
10
init.lua
10
init.lua
|
|
@ -629,18 +629,18 @@ require("dapui").setup()
|
||||||
vim.keymap.set('n', '<leader>dd', require("dapui").toggle, {})
|
vim.keymap.set('n', '<leader>dd', require("dapui").toggle, {})
|
||||||
vim.keymap.set('n', '<leader>db', require("dap").toggle_breakpoint, {})
|
vim.keymap.set('n', '<leader>db', require("dap").toggle_breakpoint, {})
|
||||||
vim.fn.sign_define('DapBreakpoint', {
|
vim.fn.sign_define('DapBreakpoint', {
|
||||||
text = '🛑',
|
text = '',
|
||||||
texthl = 'DapBreakpoint',
|
texthl = 'DapBreakpoint',
|
||||||
linehl = 'DapBreakpoint',
|
linehl = 'DapBreakpoint',
|
||||||
numhl =
|
numhl =
|
||||||
'DapBreakpoint'
|
'DapBreakpoint'
|
||||||
})
|
})
|
||||||
vim.fn.sign_define('DapBreakpointCondition',
|
vim.fn.sign_define('DapBreakpointCondition',
|
||||||
{ text = '❓', texthl = 'DapBreakpoint', linehl = 'DapBreakpoint', numhl = 'DapBreakpoint' })
|
{ text = '', texthl = 'DapBreakpoint', linehl = 'DapBreakpoint', numhl = 'DapBreakpoint' })
|
||||||
vim.fn.sign_define('DapBreakpointRejected',
|
vim.fn.sign_define('DapBreakpointRejected',
|
||||||
{ text = '❗', texthl = 'DapBreakpoint', linehl = 'DapBreakpoint', numhl = 'DapBreakpoint' })
|
{ text = '', texthl = 'DapBreakpoint', linehl = 'DapBreakpoint', numhl = 'DapBreakpoint' })
|
||||||
vim.fn.sign_define('DapLogPoint', { text = 'ℹ️', texthl = 'DapLogPoint', linehl = 'DapLogPoint', numhl = 'DapLogPoint' })
|
vim.fn.sign_define('DapLogPoint', { text = '', texthl = 'DapLogPoint', linehl = 'DapLogPoint', numhl = 'DapLogPoint' })
|
||||||
vim.fn.sign_define('DapStopped', { text = '▶️', texthl = 'DapStopped', linehl = 'DapStopped', numhl = 'DapStopped' })
|
vim.fn.sign_define('DapStopped', { text = '', texthl = 'DapStopped', linehl = 'DapStopped', numhl = 'DapStopped' })
|
||||||
vim.api.nvim_set_hl(0, 'DapBreakpoint', { ctermbg = 0, fg = '#993939', bg = '#31353f' })
|
vim.api.nvim_set_hl(0, 'DapBreakpoint', { ctermbg = 0, fg = '#993939', bg = '#31353f' })
|
||||||
vim.api.nvim_set_hl(0, 'DapLogPoint', { ctermbg = 0, fg = '#61afef', bg = '#31353f' })
|
vim.api.nvim_set_hl(0, 'DapLogPoint', { ctermbg = 0, fg = '#61afef', bg = '#31353f' })
|
||||||
vim.api.nvim_set_hl(0, 'DapStopped', { ctermbg = 0, fg = '#98c379', bg = '#31353f' })
|
vim.api.nvim_set_hl(0, 'DapStopped', { ctermbg = 0, fg = '#98c379', bg = '#31353f' })
|
||||||
|
|
|
||||||
2
nicesong
2
nicesong
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
spotdl "$(playerctl -i firefox metadata --format '{{ artist }} - {{ title }}')" --output ~/Music
|
yt-dlp --embed-metadata -x --audio-format aac -f bestaudio "ytsearch:$(playerctl -i firefox metadata --format '{{ artist }} - {{ title }}')" -o "~/Music/%(artist)s - %(title)s.%(ext)s"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue