๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

change snacks animation

Kacaii 9a285b39 04f2b74c

+61 -41
+25 -18
.config/nvim/lua/plugins/snacks.lua
··· 1 1 return { 2 - "folke/snacks.nvim", 3 - opts = { 4 - picker = { layout = "dropdown" }, 5 - input = { 6 - icon = "", 7 - win = { 8 - width = 20, 9 - relative = "cursor", 10 - row = -3, 11 - col = 0, 12 - }, 13 - }, 14 - indent = { 15 - only_scope = true, 16 - scope = { enabled = true, hl = "Comment" }, 17 - animate = { style = "down", easing = "inOutCirc" }, 18 - }, 19 - }, 2 + "folke/snacks.nvim", 3 + opts = { 4 + picker = { layout = "dropdown" }, 5 + 6 + animate = { 7 + easing = "inOutCirc", 8 + fps = 60, 9 + }, 10 + 11 + input = { 12 + icon = "", 13 + win = { 14 + width = 20, 15 + relative = "cursor", 16 + row = -3, 17 + col = 0, 18 + }, 19 + }, 20 + 21 + indent = { 22 + only_scope = true, 23 + scope = { enabled = true, hl = "Comment" }, 24 + animate = { style = "down" }, 25 + }, 26 + }, 20 27 }
+36 -23
.config/nvim/snippets/terminal-escape-codes/terminal-modes.json
··· 2 2 "RESET": { 3 3 "prefix": "ansi_modes_reset", 4 4 "description": "Reset all colors and modes ๓ฐœ‰ ", 5 - "body": ["\"\\x1b[0m\""] 5 + "body": [ 6 + "\"\\x1b[0m\"" 7 + ] 6 8 }, 7 - 8 9 "BOLD": { 9 10 "prefix": "ansi_modes_bold", 10 11 "description": "Set or Remove Bold mode ๏’‰ ", 11 - "body": ["\"\\x1b[${1|1,22|}m\""] 12 + "body": [ 13 + "\"\\x1b[${1|1,22|}m\"" 14 + ] 12 15 }, 13 - 14 16 "DIM": { 15 17 "prefix": "ansi_modes_dim", 16 18 "description": "Set or Remove Dim / Faint mode ๏’‰ ", 17 - "body": ["\"\\x1b[${1|2,22|}m\""] 19 + "body": [ 20 + "\"\\x1b[${1|2,22|}m\"" 21 + ] 18 22 }, 19 - 20 23 "FAINT": { 21 24 "prefix": "ansi_modes_faint", 22 25 "description": "Set or Remove Dim / Faint mode ๏’‰ ", 23 - "body": ["\"\\x1b[${1|2,22|}m\""] 26 + "body": [ 27 + "\"\\x1b[${1|2,22|}m\"" 28 + ] 24 29 }, 25 - 26 30 "ITALIC": { 27 31 "prefix": "ansi_modes_italic", 28 32 "description": "Set or Remove Italic mode ๏’‰ ", 29 - "body": ["\"\\x1b[${1|3,23|}m\""] 33 + "body": [ 34 + "\"\\x1b[${1|3,23|}m\"" 35 + ] 30 36 }, 31 - 32 37 "UNDERLINE": { 33 38 "prefix": "ansi_modes_underline", 34 39 "description": "Set or Remove Underline mode ๏’‰ ", 35 - "body": ["\"\\x1b[${1|4,24|}m\""] 40 + "body": [ 41 + "\"\\x1b[${1|4,24|}m\"" 42 + ] 36 43 }, 37 - 38 44 "BLINKING": { 39 45 "prefix": "ansi_modes_blinking", 40 46 "description": "Set or Remove Blinking mode ๏’‰ ", 41 - "body": ["\"\\x1b[${1|5,25|}m\""] 47 + "body": [ 48 + "\"\\x1b[${1|5,25|}m\"" 49 + ] 42 50 }, 43 - 44 51 "INVERSE": { 45 52 "prefix": "ansi_modes_inverse", 46 53 "description": "Set or Remove Inverse / Reverse mode ๏’‰ ", 47 - "body": ["\"\\x1b[${1|7,27|}m\""] 54 + "body": [ 55 + "\"\\x1b[${1|7,27|}m\"" 56 + ] 48 57 }, 49 - 50 58 "REVERSE": { 51 59 "prefix": "ansi_modes_reverse", 52 60 "description": "Set or Remove Inverse / Reverse mode ๏’‰ ", 53 - "body": ["\"\\x1b[${1|7,27|}m\""] 61 + "body": [ 62 + "\"\\x1b[${1|7,27|}m\"" 63 + ] 54 64 }, 55 - 56 65 "HIDDEN": { 57 66 "prefix": "ansi_modes_hidden", 58 67 "description": "Set or Remove Hidden / Invisible mode ๏’‰ ", 59 - "body": ["\"\\x1b[${1|8,28|}m\""] 68 + "body": [ 69 + "\"\\x1b[${1|8,28|}m\"" 70 + ] 60 71 }, 61 - 62 72 "INVISIBLE": { 63 73 "prefix": "ansi_modes_invisible", 64 74 "description": "Set or Remove Hidden / Invisible mode ๏’‰ ", 65 - "body": ["\"\\x1b[${1|8,28|}m\""] 75 + "body": [ 76 + "\"\\x1b[${1|8,28|}m\"" 77 + ] 66 78 }, 67 - 68 79 "STRIKETHROUGH": { 69 80 "prefix": "ansi_modes_strikethrough", 70 81 "description": "Set or Remove strikethrough mode ๏’‰ ", 71 - "body": ["\"\\x1b[${1|9,29|}m\""] 82 + "body": [ 83 + "\"\\x1b[${1|9,29|}m\"" 84 + ] 72 85 } 73 86 }