From 4aabefffae4f6c8f08cfa85130cf89259f3d2683 Mon Sep 17 00:00:00 2001 From: DustVoice Date: Wed, 7 Dec 2022 08:35:45 +0100 Subject: [PATCH] Perform cleanup --- .config/nushell/.gitignore | 6 ++++++ .config/nushell/env.nu | 6 +++--- .config/nushell/history.txt | 27 +++++++++++++++++++++++++++ .doom.d/config.el | 2 -- .doom.d/packages.el | 4 ---- 5 files changed, 36 insertions(+), 9 deletions(-) create mode 100644 .config/nushell/.gitignore diff --git a/.config/nushell/.gitignore b/.config/nushell/.gitignore new file mode 100644 index 0000000..893548d --- /dev/null +++ b/.config/nushell/.gitignore @@ -0,0 +1,6 @@ +/* +/*/ +!/.gitignore + +!/config.nu +!/env.nu diff --git a/.config/nushell/env.nu b/.config/nushell/env.nu index 3bfd8b0..a882786 100644 --- a/.config/nushell/env.nu +++ b/.config/nushell/env.nu @@ -21,9 +21,9 @@ let-env PROMPT_COMMAND_RIGHT = {} # The prompt indicators are environmental variables that represent # the state of the prompt let-env PROMPT_INDICATOR = { "" } -let-env PROMPT_INDICATOR_VI_INSERT = { ": " } -let-env PROMPT_INDICATOR_VI_NORMAL = { "> " } -let-env PROMPT_MULTILINE_INDICATOR = { "::: " } +let-env PROMPT_INDICATOR_VI_INSERT = { "> " } +let-env PROMPT_INDICATOR_VI_NORMAL = { ": " } +let-env PROMPT_MULTILINE_INDICATOR = { ">>> " } # Specifies how environment variables are: # - converted from a string to a value on Nushell startup (from_string) diff --git a/.config/nushell/history.txt b/.config/nushell/history.txt index 103e943..5f0f0d3 100644 --- a/.config/nushell/history.txt +++ b/.config/nushell/history.txt @@ -66,3 +66,30 @@ head .config/nushell/env.nu $env.PROMPT_INDICATOR exi chsh -s /usr/bin/fish dustvoice +ls +oh-my-posh init fish --config "/usr/share/oh-my-posh/themes/dracula.omp.json" | source +oh-my-posh init nu =-config "/usr/share/oh-my-posh/themes/dracula.omp.json" +oh-my-posh init nu --config "/usr/share/oh-my-posh/themes/dracula.omp.json" +source .oh-my-posh.nu +echo hi +et .config/nushell/env.nu +oh-my-posh init nu --config "/usr/share/oh-my-posh/themes/dracula.omp.json" +source .oh-my-posh.nu +echo hi +echo hi | put +echo hi | tabe +echo hi | table +ls +ls | sort-by size +ls | sort-by size | revese +ls | sort-by size | reverse +ls | sort-by size | reverse | where type == dir +ls | where type == file +cat +cat README.md +ls -l +ls -la +ea +exa -la +exa -la | table +ls -la diff --git a/.doom.d/config.el b/.doom.d/config.el index affe7b3..e29cd1c 100644 --- a/.doom.d/config.el +++ b/.doom.d/config.el @@ -120,6 +120,4 @@ (add-hook 'post-command-hook #'paw64-post-command-hook nil t) (electric-indent-local-mode -1))) -(use-package! company-64tass :init :config) -(use-package! flycheck-64tass :init :config) (use-package! arm-mode :init :config) diff --git a/.doom.d/packages.el b/.doom.d/packages.el index 7ae5fce..621dedf 100644 --- a/.doom.d/packages.el +++ b/.doom.d/packages.el @@ -67,10 +67,6 @@ (package! paw64-mode :recipe (:host github :repo "svjson/paw64-mode")) -(package! company-64tass - :recipe (:host github :repo "svjson/company-64tass")) -(package! flycheck-64tass - :recipe (:host github :repo "svjson/flycheck-64tass")) (package! arm-mode :recipe (:host github :repo "charje/arm-mode")) (package! nasm-mode)