From 21b4bcee03241c67e2e09a5d3babd601eb7ebae9 Mon Sep 17 00:00:00 2001 From: rootiest Date: Tue, 9 Jul 2024 14:47:20 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=B8=20Update=20CodeSnap=20Font?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change the font used in CodeSnap to Iosevka --- lua/plugins/codesnap.lua | 74 ++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/lua/plugins/codesnap.lua b/lua/plugins/codesnap.lua index 4f6f4e1..0e4c0ac 100644 --- a/lua/plugins/codesnap.lua +++ b/lua/plugins/codesnap.lua @@ -2,42 +2,42 @@ -- -------------------------------- CodeSnap ----------------------------------- -- ----------------------------------------------------------------------------- return { - "mistricky/codesnap.nvim", - build = "make", - keys = { - { - "cy", - "CodeSnap", - mode = "x", - desc = "󰹑 Save selected code snapshot into clipboard", - }, - { - "cs", - "CodeSnapSave", - mode = "x", - desc = "󰉏 Save selected code snapshot in ~/Pictures", - }, - { - "ch", - "CodeSnapHighlight", - mode = "x", - desc = " Highlight and snapshot selected code into clipboard", - }, - { - "ci", - "CodeSnapASCII", - mode = "x", - desc = " Save ASCII code snapshot into clipboard", - }, + "mistricky/codesnap.nvim", + build = "make", + keys = { + { + "cy", + "CodeSnap", + mode = "x", + desc = "󰹑 Save selected code snapshot into clipboard", }, - opts = { - save_path = "~/Pictures/Screenshots/", - has_breadcrumbs = true, - show_workspace = true, - --has_line_number = true, - bg_theme = "default", - watermark = "Rootiest Snippets", - code_font_family = "CaskaydiaCove NF", - code_font_size = 12, + { + "cs", + "CodeSnapSave", + mode = "x", + desc = "󰉏 Save selected code snapshot in ~/Pictures", }, -} \ No newline at end of file + { + "ch", + "CodeSnapHighlight", + mode = "x", + desc = " Highlight and snapshot selected code into clipboard", + }, + { + "ci", + "CodeSnapASCII", + mode = "x", + desc = " Save ASCII code snapshot into clipboard", + }, + }, + opts = { + save_path = "~/Pictures/Screenshots/", + has_breadcrumbs = true, + show_workspace = true, + --has_line_number = true, + bg_theme = "default", + watermark = "Rootiest Snippets", + code_font_family = "Iosevka NF", + code_font_size = 12, + }, +}