From 80419f52bac530a3a6003a64f856ea081aa37edd Mon Sep 17 00:00:00 2001 From: Tran Hau Date: Mon, 18 Jan 2021 17:43:27 +0700 Subject: [PATCH] chore: cleanup unused config --- config/alacritty/alacritty.yml | 22 --------- config/alacritty/dracula.yml | 82 ---------------------------------- config/config.json | 24 ---------- config/kitty/diff.conf | 19 -------- config/kitty/dracula.conf | 62 ------------------------- config/kitty/kitty.conf | 14 ------ config/nvim/init.vim | 1 - 7 files changed, 224 deletions(-) delete mode 100644 config/alacritty/alacritty.yml delete mode 100644 config/alacritty/dracula.yml delete mode 100644 config/kitty/diff.conf delete mode 100644 config/kitty/dracula.conf delete mode 100644 config/kitty/kitty.conf diff --git a/config/alacritty/alacritty.yml b/config/alacritty/alacritty.yml deleted file mode 100644 index aa54263..0000000 --- a/config/alacritty/alacritty.yml +++ /dev/null @@ -1,22 +0,0 @@ -import: - - /home/yoshie/.config/alacritty/dracula.yml - -window: - dimensions: - columns: 80 - lines: 24 - -font: - normal: - family: Agave - style: Regular - bold: - family: Agave - style: Bold - italic: - family: Agave - style: Regular - bold_italic: - family: Agave - style: Bold - size: 16.0 diff --git a/config/alacritty/dracula.yml b/config/alacritty/dracula.yml deleted file mode 100644 index 187dbd3..0000000 --- a/config/alacritty/dracula.yml +++ /dev/null @@ -1,82 +0,0 @@ -# ... - -# Colors (Dracula) -colors: - # Default colors - primary: - background: '0x282a36' - foreground: '0xf8f8f2' - - # Bright and dim foreground colors - # - # The dimmed foreground color is calculated automatically if it is not present. - # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors` - # is `false`, the normal foreground color will be used. - #dim_foreground: '0x9a9a9a' - #bright_foreground: '0xffffff' - - # Cursor colors - # - # Colors which should be used to draw the terminal cursor. If these are unset, - # the cursor color will be the inverse of the cell color. - cursor: - text: '0x44475a' - cursor: '0xf8f8f2' - - # Selection colors - # - # Colors which should be used to draw the selection area. If selection - # background is unset, selection color will be the inverse of the cell colors. - # If only text is unset the cell text color will remain the same. - selection: - text: '0xf8f8f2' - background: '0x44475a' - - # Normal colors - normal: - black: '0x000000' - red: '0xff5555' - green: '0x50fa7b' - yellow: '0xf1fa8c' - blue: '0xbd93f9' - magenta: '0xff79c6' - cyan: '0x8be9fd' - white: '0xbfbfbf' - - # Bright colors - bright: - black: '0x4d4d4d' - red: '0xff6e67' - green: '0x5af78e' - yellow: '0xf4f99d' - blue: '0xcaa9fa' - magenta: '0xff92d0' - cyan: '0x9aedfe' - white: '0xe6e6e6' - - # Dim colors - # - # If the dim colors are not set, they will be calculated automatically based - # on the `normal` colors. - dim: - black: '0x14151b' - red: '0xff2222' - green: '0x1ef956' - yellow: '0xebf85b' - blue: '0x4d5b86' - magenta: '0xff46b0' - cyan: '0x59dffc' - white: '0xe6e6d1' - - # Indexed Colors - # - # The indexed colors include all colors from 16 to 256. - # When these are not set, they're filled with sensible defaults. - # - # Example: - # `- { index: 16, color: '0xff00ff' }` - # - indexed_colors: [] - -# Visual Bell -# ... diff --git a/config/config.json b/config/config.json index 3a4579b..4e062aa 100644 --- a/config/config.json +++ b/config/config.json @@ -8,30 +8,6 @@ } ] }, - "mpv": { - "dirs": [ - { - "internal": "config/mpv", - "external": "~/.config/mpv" - } - ] - }, - "alacritty": { - "dirs": [ - { - "internal": "config/alacritty", - "external": "~/.config/alacritty" - } - ] - }, - "kitty": { - "dirs": [ - { - "internal": "config/kitty", - "external": "~/.config/kitty" - } - ] - }, "fontconfig": { "dirs": [ { diff --git a/config/kitty/diff.conf b/config/kitty/diff.conf deleted file mode 100644 index 5fec447..0000000 --- a/config/kitty/diff.conf +++ /dev/null @@ -1,19 +0,0 @@ -foreground #f8f8f2 -background #282a36 -title_fg #f8f8f2 -title_bg #282a36 -margin_bg #6272a4 -margin_fg #44475a -removed_bg #ff5555 -highlight_removed_bg #ff5555 -removed_margin_bg #ff5555 -added_bg #50fa7b -highlight_added_bg #50fa7b -added_margin_bg #50fa7b -filler_bg #44475a -hunk_margin_bg #44475a -hunk_bg #bd93f9 -search_bg #8be9fd -search_fg #282a36 -select_bg #f1fa8c -select_fg #282a36 diff --git a/config/kitty/dracula.conf b/config/kitty/dracula.conf deleted file mode 100644 index 8bee635..0000000 --- a/config/kitty/dracula.conf +++ /dev/null @@ -1,62 +0,0 @@ -# https://draculatheme.com/kitty -# -# Installation instructions: -# -# cp dracula.conf ~/.config/kitty/ -# echo "include dracula.conf" >> ~/.config/kitty/kitty.conf -# -# Then reload kitty for the config to take affect. -# Alternatively copy paste below directly into kitty.conf - -foreground #f8f8f2 -background #282a36 -selection_foreground #ffffff -selection_background #44475a - -url_color #8be9fd - -# black -color0 #21222c -color8 #6272a4 - -# red -color1 #ff5555 -color9 #ff6e6e - -# green -color2 #50fa7b -color10 #69ff94 - -# yellow -color3 #f1fa8c -color11 #ffffa5 - -# blue -color4 #bd93f9 -color12 #d6acff - -# magenta -color5 #ff79c6 -color13 #ff92df - -# cyan -color6 #8be9fd -color14 #a4ffff - -# white -color7 #f8f8f2 -color15 #ffffff - -# Cursor colors -cursor #f8f8f2 -cursor_text_color background - -# Tab bar colors -active_tab_foreground #282a36 -active_tab_background #f8f8f2 -inactive_tab_foreground #282a36 -inactive_tab_background #6272a4 - -# Marks -mark1_foreground #282a36 -mark1_background #ff5555 diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf deleted file mode 100644 index 1d18ac7..0000000 --- a/config/kitty/kitty.conf +++ /dev/null @@ -1,14 +0,0 @@ -# Agave -font_family Agave -bold_font Agave Bold -italic_font Agave Regular -bold_italic_font Agave Bold -font_size 16.0 - -# Tweaks -enable_audio_bell no -remember_window_size no -initial_window_width 80c -initial_window_height 24c - -include dracula.conf diff --git a/config/nvim/init.vim b/config/nvim/init.vim index 9442d2d..24db99c 100644 --- a/config/nvim/init.vim +++ b/config/nvim/init.vim @@ -20,7 +20,6 @@ let g:go_fmt_command='gofumports' " vim-plug call plug#begin() Plug 'preservim/nerdtree' -Plug 'vim-airline/vim-airline' Plug 'machakann/vim-sandwich' Plug 'fatih/vim-go' call plug#end()