vim: add separate icons for checkmark and checkbox

This commit is contained in:
Fernando Schauenburg 2024-02-17 22:52:56 +01:00
parent 2a042f9927
commit a6b117d44c
4 changed files with 5 additions and 3 deletions

View file

@ -92,7 +92,8 @@ M.modes = {
M.ui = {
Attention = '',
Bug = '', -- 
Checkmark = '', --  󰄬 󰄬 
Checkbox = '', --  󰄬 󰄬 
Checkmark = '', --  󰄬 󰄬 
ChevronDown = '', -- 
ChevronLeft = '', -- 
ChevronRight = '', -- 

View file

@ -7,6 +7,7 @@ M.event = 'LspAttach'
M.config = function()
require('fidget').setup {
text = {
done = require('fschauen.icons').ui.Checkmark,
spinner = {
'▱▱▱▱▱▱▱',
'▰▱▱▱▱▱▱',

View file

@ -155,7 +155,7 @@ M.config = function()
prompt_prefix = '',
selection_caret = icons.ui.Play .. ' ',
multi_icon = icons.ui.Checkmark,
multi_icon = icons.ui.Checkbox,
scroll_strategy = 'limit', -- Don't wrap around in results.
dynamic_preview_title = true,

View file

@ -19,7 +19,7 @@ local icons = require('fschauen.icons')
M.config = function()
require('todo-comments').setup {
keywords = {
TODO = { icon = icons.ui.Checkmark },
TODO = { icon = icons.ui.Checkbox },
FIX = { icon = icons.ui.Bug },
HACK = { icon = icons.ui.Fire },
WARN = { icon = icons.ui.Warning },