Compare commits
8 Commits
e88b1dd5fa
...
5ffc046537
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ffc046537 | |||
| 8b4e01b538 | |||
| d6c0df83f1 | |||
| aed9e65c44 | |||
| a71942a69e | |||
| 891c761e66 | |||
| 72386b0005 | |||
| 6763f4105f |
20
i3/config.j2
20
i3/config.j2
@@ -319,10 +319,10 @@ assign [class="^Wine$"] $workspace10
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# class border backgr. text indicator
|
# class border backgr. text indicator
|
||||||
client.focused #2e2e2e #e5b567 #000000 #FF0000
|
client.focused #272822 #e5b567 #000000 #FF0000
|
||||||
client.focused_inactive #2e2e2e #5f676a #ffffff #484e50
|
client.focused_inactive #272822 #5f676a #ffffff #484e50
|
||||||
client.unfocused #2e2e2e #2e2e2e #cccccc #292d2e
|
client.unfocused #272822 #272822 #cccccc #292d2e
|
||||||
client.urgent #2e2e2e #900000 #ffffff #900000
|
client.urgent #272822 #900000 #ffffff #900000
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
### APPLICATION SPECIFIC SETTINGS ##############################################
|
### APPLICATION SPECIFIC SETTINGS ##############################################
|
||||||
@@ -378,7 +378,7 @@ bar {
|
|||||||
font pango:Inconsolata, FontAwesome {{ machine.font_size }}
|
font pango:Inconsolata, FontAwesome {{ machine.font_size }}
|
||||||
|
|
||||||
colors {
|
colors {
|
||||||
background #2e2e2e
|
background #272822
|
||||||
statusline #ffffff
|
statusline #ffffff
|
||||||
separator #555555
|
separator #555555
|
||||||
# separator #e5b567
|
# separator #e5b567
|
||||||
@@ -386,11 +386,11 @@ bar {
|
|||||||
# focused_background #303030
|
# focused_background #303030
|
||||||
# focused_separator #272822
|
# focused_separator #272822
|
||||||
|
|
||||||
focused_workspace #e5b567 #2e2e2e #ffffff
|
focused_workspace #e5b567 #272822 #ffffff
|
||||||
active_workspace #2e2e2e #5f676a #ffffff
|
active_workspace #272822 #5f676a #ffffff
|
||||||
inactive_workspace #2e2e2e #2e2e2e #dddddd
|
inactive_workspace #272822 #272822 #dddddd
|
||||||
urgent_workspace #D00000 #D00000 #2e2e2e
|
urgent_workspace #D00000 #D00000 #272822
|
||||||
binding_mode #2e2e2e #e5b567 #2e2e2e
|
binding_mode #272822 #e5b567 #272822
|
||||||
}
|
}
|
||||||
|
|
||||||
i3bar_command i3bar
|
i3bar_command i3bar
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
set -g default-command "${SHELL}"
|
set -g default-command "${SHELL}"
|
||||||
set -g default-terminal "xterm-256color"
|
# This *has* to be set to something with `screen-`, do not set this bindly
|
||||||
|
# to $TERM, e.g. "alacritty"!
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
set -g set-titles on
|
set -g set-titles on
|
||||||
set -g set-titles-string '#S'
|
set -g set-titles-string '#S'
|
||||||
@@ -38,9 +40,18 @@ set-window-option -g pane-base-index 1
|
|||||||
set -g status-position bottom
|
set -g status-position bottom
|
||||||
set -g status-justify left
|
set -g status-justify left
|
||||||
|
|
||||||
|
# https://wiki.archlinux.org/title/tmux#256_colors
|
||||||
|
set -ga terminal-overrides ",alacritty:Tc"
|
||||||
|
|
||||||
set-option -g status-bg '#2e2e2e'
|
setw -g pane-border-status bottom
|
||||||
set-option -g status-fg white
|
setw -g pane-border-format ''
|
||||||
|
|
||||||
|
setw -g pane-border-lines double
|
||||||
|
setw -g pane-border-style "fg=#555555"
|
||||||
|
setw -g pane-active-border-style "fg=#e5b567"
|
||||||
|
setw -g pane-border-indicators colour
|
||||||
|
|
||||||
|
set-option -g status-style bg=default
|
||||||
|
|
||||||
set-window-option -g window-status-format ' #I: #W #F '
|
set-window-option -g window-status-format ' #I: #W #F '
|
||||||
set-window-option -g window-status-current-format ' #I: #W #F '
|
set-window-option -g window-status-current-format ' #I: #W #F '
|
||||||
@@ -55,8 +66,8 @@ set-window-option -g automatic-rename-format '#{pane_current_command}'
|
|||||||
|
|
||||||
set-window-option -g window-status-separator ' '
|
set-window-option -g window-status-separator ' '
|
||||||
|
|
||||||
set -g status-left " #[bg=#6c99bb,fg=#2e2e2e] #{session_name} #[bg=#2e2e2e] "
|
set -g status-left " #[bg=#6c99bb,fg=#2e2e2e] #{session_name} #[bg=default] "
|
||||||
set -g status-right "#[bg=#CCCCCC,fg=#555555] #{host} #[bg=#272822] "
|
set -g status-right "#[bg=#CCCCCC,fg=#555555] #{host} #[bg=default] "
|
||||||
set -g status-left-length 100
|
set -g status-left-length 100
|
||||||
|
|
||||||
set -g message-style "bg=#CCCCCC,fg=#555555"
|
set -g message-style "bg=#CCCCCC,fg=#555555"
|
||||||
|
|||||||
10
vim/vimrc
10
vim/vimrc
@@ -13,8 +13,8 @@ Plug 'majutsushi/tagbar'
|
|||||||
" Plug 'nblock/vim-dokuwiki'
|
" Plug 'nblock/vim-dokuwiki'
|
||||||
Plug 'reedes/vim-pencil'
|
Plug 'reedes/vim-pencil'
|
||||||
Plug 'saltstack/salt-vim'
|
Plug 'saltstack/salt-vim'
|
||||||
"Plug 'sickill/vim-monokai'
|
Plug 'sickill/vim-monokai'
|
||||||
Plug 'patstockwell/vim-monokai-tasty'
|
" Plug 'patstockwell/vim-monokai-tasty'
|
||||||
" Plug 'sjl/gundo.vim'
|
" Plug 'sjl/gundo.vim'
|
||||||
Plug 'tpope/vim-commentary'
|
Plug 'tpope/vim-commentary'
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
@@ -187,6 +187,8 @@ set linebreak
|
|||||||
set wrap
|
set wrap
|
||||||
set wrapscan
|
set wrapscan
|
||||||
|
|
||||||
|
" == to use guicolors in terminal ==
|
||||||
|
set termguicolors
|
||||||
|
|
||||||
" === keybinds ===
|
" === keybinds ===
|
||||||
set pastetoggle=<F11>
|
set pastetoggle=<F11>
|
||||||
@@ -257,7 +259,7 @@ nnoremap Q <nop>
|
|||||||
" let g:solarized_contrast="normal"
|
" let g:solarized_contrast="normal"
|
||||||
" let g:solarized_visibility="normal"
|
" let g:solarized_visibility="normal"
|
||||||
syntax enable
|
syntax enable
|
||||||
silent! colorscheme vim-monokai-tasty
|
silent! colorscheme monokai
|
||||||
|
|
||||||
" == tagbar ==
|
" == tagbar ==
|
||||||
nnoremap <F10> :TagbarToggle<CR>
|
nnoremap <F10> :TagbarToggle<CR>
|
||||||
@@ -287,7 +289,7 @@ let g:tagbar_foldlevel = 99 " unfold all
|
|||||||
"let g:airline#extensions#whitespace#checks = ['trailing']
|
"let g:airline#extensions#whitespace#checks = ['trailing']
|
||||||
|
|
||||||
let g:lightline = {
|
let g:lightline = {
|
||||||
\ 'colorscheme': 'powerline',
|
\ 'colorscheme': 'wombat',
|
||||||
\ 'active': {
|
\ 'active': {
|
||||||
\ 'left': [ [ 'mode', 'paste' ],
|
\ 'left': [ [ 'mode', 'paste' ],
|
||||||
\ [ 'readonly', 'filename', 'modified', 'helloworld' ] ],
|
\ [ 'readonly', 'filename', 'modified', 'helloworld' ] ],
|
||||||
|
|||||||
Reference in New Issue
Block a user