From 643fdee5981c72dd5e972d3158806e90ae4b420f Mon Sep 17 00:00:00 2001 From: "jakob.stendahl" Date: Tue, 10 Oct 2023 07:56:02 +0200 Subject: Do some changes, switch to alacritty, etc --- Common/alacritty/alacritty.yml | 25 +++++++++++++++++++++++++ Common/alacritty/atom_one_light.yaml | 25 +++++++++++++++++++++++++ Common/alacritty/papercolor-light.yaml | 33 +++++++++++++++++++++++++++++++++ Common/alacritty/papertheme.yaml | 28 ++++++++++++++++++++++++++++ Common/alacritty/solarized_light.yaml | 28 ++++++++++++++++++++++++++++ 5 files changed, 139 insertions(+) create mode 100644 Common/alacritty/alacritty.yml create mode 100644 Common/alacritty/atom_one_light.yaml create mode 100644 Common/alacritty/papercolor-light.yaml create mode 100644 Common/alacritty/papertheme.yaml create mode 100644 Common/alacritty/solarized_light.yaml (limited to 'Common/alacritty') diff --git a/Common/alacritty/alacritty.yml b/Common/alacritty/alacritty.yml new file mode 100644 index 0000000..7423485 --- /dev/null +++ b/Common/alacritty/alacritty.yml @@ -0,0 +1,25 @@ +live_config_reload: true + +import: + - ~/.config/alacritty/papercolor-light.yaml + #- ~/.config/alacritty/atom_one_light.yaml + #- ~/.config/alacritty/papertheme.yaml + #- ~/.config/alacritty/solarized_light.yaml + +env: + TERM: xterm-256color + +font: + normal: + family: RobotoMono Nerd Font Mono + + size: 10 + +window: + padding: + x: 0 + y: 0 + +key_bindings: + - { key: V, mods: Alt, action: Paste } + - { key: C, mods: Alt, action: Copy } diff --git a/Common/alacritty/atom_one_light.yaml b/Common/alacritty/atom_one_light.yaml new file mode 100644 index 0000000..07e3ea3 --- /dev/null +++ b/Common/alacritty/atom_one_light.yaml @@ -0,0 +1,25 @@ +colors: + primary: + background: '0xf8f8f8' + foreground: '0x2a2b33' + + normal: + black: '0x000000' + red: '0xde3d35' + green: '0x3e953a' + yellow: '0xd2b67b' + blue: '0x2f5af3' + magenta: '0xa00095' + cyan: '0x3e953a' + white: '0xbbbbbb' + + bright: + black: '0x000000' + red: '0xde3d35' + green: '0x3e953a' + yellow: '0xd2b67b' + blue: '0x2f5af3' + magenta: '0xa00095' + cyan: '0x3e953a' + white: '0xffffff' + diff --git a/Common/alacritty/papercolor-light.yaml b/Common/alacritty/papercolor-light.yaml new file mode 100644 index 0000000..2959411 --- /dev/null +++ b/Common/alacritty/papercolor-light.yaml @@ -0,0 +1,33 @@ +# Colors (PaperColor - Light) +colors: + # Default colors + primary: + background: '0xeeeeee' + foreground: '0x444444' + + cursor: + text: '0xeeeeee' + cursor: '0x444444' + + # Normal colors + normal: + black: '0xeeeeee' + red: '0xaf0000' + green: '0x008700' + yellow: '0x5f8700' + blue: '0x0087af' + magenta: '0x878787' + cyan: '0x005f87' + white: '0x444444' + + # Bright colors + bright: + black: '0xbcbcbc' + red: '0xd70000' + green: '0xd70087' + yellow: '0x8700af' + blue: '0xd75f00' + magenta: '0xd75f00' + cyan: '0x005faf' + white: '0x005f87' + diff --git a/Common/alacritty/papertheme.yaml b/Common/alacritty/papertheme.yaml new file mode 100644 index 0000000..13117e1 --- /dev/null +++ b/Common/alacritty/papertheme.yaml @@ -0,0 +1,28 @@ +# Colors (Paper Theme) +colors: + # Default colors + primary: + background: '#F2EEDE' + foreground: '#000000' + + # Normal colors + normal: + black: '#000000' + red: '#CC3E28' + green: '#216609' + yellow: '#B58900' + blue: '#1E6FCC' + magenta: '#5C21A5' + cyan: '#158C86' + white: '#AAAAAA' + + # Bright colors + bright: + black: '#555555' + red: '#CC3E28' + green: '#216609' + yellow: '#B58900' + blue: '#1E6FCC' + magenta: '#5C21A5' + cyan: '#158C86' + white: '#AAAAAA' diff --git a/Common/alacritty/solarized_light.yaml b/Common/alacritty/solarized_light.yaml new file mode 100644 index 0000000..6a5acd9 --- /dev/null +++ b/Common/alacritty/solarized_light.yaml @@ -0,0 +1,28 @@ +# Colors (Solarized Light) +colors: + # Default colors + primary: + background: '0xfdf6e3' + foreground: '0x586e75' + + # Normal colors + normal: + black: '0x073642' + red: '0xdc322f' + green: '0x859900' + yellow: '0xb58900' + blue: '0x268bd2' + magenta: '0xd33682' + cyan: '0x2aa198' + white: '0xeee8d5' + + # Bright colors + bright: + black: '0x002b36' + red: '0xcb4b16' + green: '0x586e75' + yellow: '0x657b83' + blue: '0x839496' + magenta: '0x6c71c4' + cyan: '0x93a1a1' + white: '0xfdf6e3' \ No newline at end of file -- cgit v1.2.3