refactor(plugins/astroui): use icons from utils
This commit is contained in:
parent
208ee4fec2
commit
f225a1f8db
3 changed files with 1 additions and 64 deletions
|
|
@ -1,8 +1,7 @@
|
||||||
# homepage: https://github.com/AstroNvim/astroui
|
# homepage: https://github.com/AstroNvim/astroui
|
||||||
{ helpers, lib, pkgs, ... }:
|
{ helpers, icons, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
icons = import ./icons.nix;
|
|
||||||
status = import ./status;
|
status = import ./status;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,61 +0,0 @@
|
||||||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astroui.lua#L7-L66
|
|
||||||
{
|
|
||||||
ActiveLSP = "";
|
|
||||||
ActiveTS = "";
|
|
||||||
ArrowLeft = "";
|
|
||||||
ArrowRight = "";
|
|
||||||
Bookmarks = "";
|
|
||||||
BufferClose = "";
|
|
||||||
DapBreakpoint = "";
|
|
||||||
DapBreakpointCondition = "";
|
|
||||||
DapBreakpointRejected = "";
|
|
||||||
DapLogPoint = "";
|
|
||||||
DapStopped = "";
|
|
||||||
Debugger = "";
|
|
||||||
DefaultFile = "";
|
|
||||||
Diagnostic = "";
|
|
||||||
DiagnosticError = "";
|
|
||||||
DiagnosticHint = "";
|
|
||||||
DiagnosticInfo = "";
|
|
||||||
DiagnosticWarn = "";
|
|
||||||
Ellipsis = "…";
|
|
||||||
Environment = "";
|
|
||||||
FileNew = "";
|
|
||||||
FileModified = "";
|
|
||||||
FileReadOnly = "";
|
|
||||||
FoldClosed = "";
|
|
||||||
FoldOpened = "";
|
|
||||||
FoldSeparator = " ";
|
|
||||||
FolderClosed = "";
|
|
||||||
FolderEmpty = "";
|
|
||||||
FolderOpen = "";
|
|
||||||
Git = "";
|
|
||||||
GitAdd = "";
|
|
||||||
GitBranch = "";
|
|
||||||
GitChange = "";
|
|
||||||
GitConflict = "";
|
|
||||||
GitDelete = "";
|
|
||||||
GitIgnored = "◌";
|
|
||||||
GitRenamed = "➜";
|
|
||||||
GitSign = "▎";
|
|
||||||
GitStaged = "✓";
|
|
||||||
GitUnstaged = "✗";
|
|
||||||
GitUntracked = "★";
|
|
||||||
LSPLoading1 = "";
|
|
||||||
LSPLoading2 = "";
|
|
||||||
LSPLoading3 = "";
|
|
||||||
MacroRecording = "";
|
|
||||||
Package = "";
|
|
||||||
Paste = "";
|
|
||||||
Refresh = "";
|
|
||||||
Search = "";
|
|
||||||
Selected = "❯";
|
|
||||||
Session = "";
|
|
||||||
Sort = "";
|
|
||||||
Spellcheck = "";
|
|
||||||
Tab = "";
|
|
||||||
TabClose = "";
|
|
||||||
Terminal = "";
|
|
||||||
Window = "";
|
|
||||||
WordFile = "";
|
|
||||||
}
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
# Forced to use raw Lua value to avoid Nix transforming special chars to unicode sequence
|
# Forced to use raw Lua value to avoid Nix transforming special chars to unicode sequence
|
||||||
__raw = ''
|
__raw = ''
|
||||||
{
|
{
|
||||||
--findme
|
|
||||||
["n"] = { "NORMAL", "normal" },
|
["n"] = { "NORMAL", "normal" },
|
||||||
["no"] = { "OP", "normal" },
|
["no"] = { "OP", "normal" },
|
||||||
["nov"] = { "OP", "normal" },
|
["nov"] = { "OP", "normal" },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue