feat(nvim): improve tree and file switching, and implements links
This commit is contained in:
29
src/utils/icons.ts
Normal file
29
src/utils/icons.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Icon } from "./types";
|
||||
|
||||
export const ICONS: Record<string, Icon> = {
|
||||
md: {
|
||||
char: " ",
|
||||
color: "#89bafa",
|
||||
},
|
||||
asc: {
|
||||
char: " ",
|
||||
color: "#f9e2af",
|
||||
},
|
||||
ts: {
|
||||
char: " ",
|
||||
color: "#4d86a2",
|
||||
},
|
||||
rs: {
|
||||
char: " ",
|
||||
color: "#be8f78",
|
||||
},
|
||||
instagram: {
|
||||
char: " ",
|
||||
color: "#e1306c",
|
||||
},
|
||||
github: {
|
||||
char: " ",
|
||||
color: "#ffffff",
|
||||
},
|
||||
UNKNOWN: { char: " ", color: "#f599ae" },
|
||||
};
|
||||
Reference in New Issue
Block a user