From 4ea6788d643a1d49ede5377e66a2909f068d2438 Mon Sep 17 00:00:00 2001 From: scbj Date: Thu, 24 Oct 2024 09:32:59 +0200 Subject: [PATCH 1/3] alacritty config migration --- alacritty/.config/alacritty/alacritty.toml | 4 +++- alacritty/.config/alacritty/themes/zegonix.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) mode change 100755 => 100644 alacritty/.config/alacritty/alacritty.toml mode change 100755 => 100644 alacritty/.config/alacritty/themes/zegonix.toml diff --git a/alacritty/.config/alacritty/alacritty.toml b/alacritty/.config/alacritty/alacritty.toml old mode 100755 new mode 100644 index 8f772ac..71fddca --- a/alacritty/.config/alacritty/alacritty.toml +++ b/alacritty/.config/alacritty/alacritty.toml @@ -1,4 +1,3 @@ -import = ["~/.config/alacritty/themes/zegonix.toml"] # import = ["~/.config/alacritty/themes/summer.toml"] [window] @@ -29,3 +28,6 @@ style = "SemiBoldItalic" family = "VictorMono Nerd Font" style = "BoldItalic" +[general] +import = ["~/.config/alacritty/themes/zegonix.toml"] + diff --git a/alacritty/.config/alacritty/themes/zegonix.toml b/alacritty/.config/alacritty/themes/zegonix.toml old mode 100755 new mode 100644 index b5f7f97..a9fa38f --- a/alacritty/.config/alacritty/themes/zegonix.toml +++ b/alacritty/.config/alacritty/themes/zegonix.toml @@ -98,4 +98,4 @@ color = "0xD8D8D8" # dark red [[colors.indexed_colors]] index = 0x20 -color = "0xC00008" \ No newline at end of file +color = "0xC00008" From f8336e1c9cbd25800ec5cc348bcedfa3e55e4141 Mon Sep 17 00:00:00 2001 From: scbj Date: Mon, 28 Oct 2024 10:52:44 +0100 Subject: [PATCH 2/3] bashrc: diable duplicates in bash history starship: change command return code color --- bashrc/.bashrc | 3 +++ starship/.config/starship.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bashrc/.bashrc b/bashrc/.bashrc index 01ddbae..ec9375d 100644 --- a/bashrc/.bashrc +++ b/bashrc/.bashrc @@ -2,6 +2,9 @@ # ~/.bashrc # +# disable duplicates in command history +export HISTCONTROL=ignoreboth:erasedups + # If not running interactively, don't do anything [[ $- != *i* ]] && return diff --git a/starship/.config/starship.toml b/starship/.config/starship.toml index 1335d66..1dc2dfe 100755 --- a/starship/.config/starship.toml +++ b/starship/.config/starship.toml @@ -32,7 +32,7 @@ zx_cyan = "#15D7E5" zx_light_cyan = "#65E7F1" zx_dark_cyan = "#109EA8" zx_white = "#DFDFD0" -zx_gray = "#808078" +zx_grey = "#808078" zx_pastel_yellow = "#F1EAA2" # You can also replace your username with a neat symbol like  or disable this @@ -97,7 +97,7 @@ disabled = false style = "fg:zx_white" format = ' $symbol' symbol = '[\[](bold fg:zx_pastel_yellow)[err](bold)[\]](bold fg:zx_pastel_yellow)' -success_symbol = '[\[](bold fg:zx_dark_cyan)[ok](bold)[\]](bold fg:zx_dark_cyan)' +success_symbol = '[\[](bold fg:zx_grey)[ok](bold)[\]](bold fg:zx_grey)' [fill] disabled = false From ad9023961deaa970bef4341893ea13935999c6fe Mon Sep 17 00:00:00 2001 From: scbj Date: Thu, 31 Oct 2024 09:43:05 +0100 Subject: [PATCH 3/3] increased vscode font size --- code/.config/Code/User/settings.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/.config/Code/User/settings.json b/code/.config/Code/User/settings.json index 671916f..efe2ada 100755 --- a/code/.config/Code/User/settings.json +++ b/code/.config/Code/User/settings.json @@ -1,7 +1,6 @@ // path="~/.config/Code/User { "editor.fontFamily": "'VictorMono Nerd Font'", - "editor.fontWeight": 500, "extensions.ignoreRecommendations": true, "workbench.startupEditor": "none", "git.openRepositoryInParentFolders": "never", @@ -19,7 +18,7 @@ "editor.minimap.renderCharacters": false, "update.showReleaseNotes": false, "editor.accessibilityPageSize": 100, - "editor.fontSize": 15, + "editor.fontSize": 18, "editor.stickyScroll.enabled": false, "files.associations": { "*.txt": "shellscript"