diff --git a/.tmux.conf b/.tmux.conf index f378e64..6d9bc8e 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -40,8 +40,8 @@ set -g status-position bottom set -g status-justify left set -g status-style 'bg=colour18 fg=colour137 dim' set -g status-left '' -set -g status-right '#[fg=colour233,bg=colour19] %d/%m #[fg=colour233,bg=colour8] %H:%M:%S ' -set -g status-right-length 50 +set -g status-right '#(exec tmux ls| cut -d " " -f 1 |tr ":" " ") #[fg=colour233,bg=colour19] %m/%d #[fg=colour233,bg=colour8] %H:%M:%S ' +set -g status-right-length 80 set -g status-left-length 20 setw -g window-status-current-style 'fg=colour1 bg=colour19 bold' diff --git a/.vimrc b/.vimrc index 37c4e89..ef7df9b 100644 --- a/.vimrc +++ b/.vimrc @@ -94,15 +94,18 @@ set history=1000 " set for vim-airline theme set t_Co=256 " for tokyonight -" set termguicolors -set background=dark +set termguicolors +"set background=dark let g:tokyonight_style = 'night' let g:tokyonight_enable_italic = 1 +let g:tokyonight_transparent_background = 1 -colorscheme tokyonight " meta5 + colorscheme tokyonight " meta5 + +"colorscheme meta5 " set airline theme -let g:airline_theme='badwolf' +let g:airline_theme="tokyonight" "'badwolf' " needed for airline + devicons let g:airline_power_fonts = 1 diff --git a/alacritty-kde-startup.sh b/alacritty-kde-startup.sh new file mode 100644 index 0000000..241f28f --- /dev/null +++ b/alacritty-kde-startup.sh @@ -0,0 +1,2 @@ +kstart5 --windowclass alacritty --desktop 3 alacritty --maximize + diff --git a/alacritty.yml b/alacritty.yml index 604398a..0d3b469 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -1,11 +1,11 @@ live_config_reload: true -shell: - program: /bin/zsh - args: - - -l - - -c - - tmux -2 attach || tmux -2 + #shell: + #program: /bin/zsh + #args: + # - -l + # - -c + # - tmux -2 attach || tmux -2 font: normal: @@ -19,39 +19,40 @@ font: y: 2 colors: - # COLORSCHEME: seashells_1.yaml + # COLORSCHEME: cyber_punk_neon_1.yaml # Default colors name: Count Von Count author: Baskerville primary: - background: '#061923' - foreground: '#e5c49e' + background: '0x000b1e' + foreground: '0x0abdc6' # Colors the cursor will use if `custom_cursor_colors` is true cursor: - text: '#061822' - cursor: '#feaf3c' + text: '0x000b1e' + cursor: '0x0abdc6' + # Normal colors normal: - black: '#1d485f' - red: '#db662d' - green: '#008eab' - yellow: '#feaf3c' - blue: '#255a62' - magenta: '#77dbf4' - cyan: '#5fb1c2' - white: '#e5c49e' + black: '0x123e7c' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x123e7c' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' # Bright colors bright: - black: '#545d65' - red: '#dd998a' - green: '#739da8' - yellow: '#fedaae' - blue: '#0bc7e3' - magenta: '#c6e8f1' - cyan: '#97b9c0' - white: '#ffe9d7' + black: '0x1c61c2' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x00ff00' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' selection: text: '#ffe9d7' background: '#265b75'