Update

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2026-03-07 12:16:48 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2026-03-07 12:16:48 +0100
Commit 3a8df65b8772658584f7ac26504469d46cfc04a7 (patch)
-rw-r--r-- .alacritty.toml 2
-rw-r--r-- .tmux.conf 2
-rw-r--r-- .vimrc 1
3 files changed, 3 insertions, 2 deletions
diff --git a/.alacritty.toml b/.alacritty.toml
...
3
  
3
  
4
[window]
4
[window]
5
dynamic_title = true
5
dynamic_title = true
6
dimensions = { columns = 140, lines = 70 }
6
dimensions = { columns = 140, lines = 50 }
7
  
7
  
8
[font]
8
[font]
9
normal = { family = "Berkeley Mono", style = "Bold" }
9
normal = { family = "Berkeley Mono", style = "Bold" }
...
diff --git a/.tmux.conf b/.tmux.conf
...
15
  
15
  
16
set -g status-bg '#222222'
16
set -g status-bg '#222222'
17
set -g status-fg '#ffffff'
17
set -g status-fg '#ffffff'
18
set -g window-status-current-format "#[fg=#000000]#[bg=#cccccc]#[fg=#000000]#[bg=#cccccc] #I:#W #[fg=#000000]#[bg=#cccccc]"
18
set -g window-status-current-format "#[fg=#000000]#[bg=#bbbbbb]#[fg=#000000]#[bg=#bbbbbb] #I:#W #[fg=#000000]#[bg=#bbbbbb]"
19
  
19
  
20
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard"
20
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard"
21
  
21
  
...
diff --git a/.vimrc b/.vimrc
...
7
	Plug 'ctrlpvim/ctrlp.vim'
7
	Plug 'ctrlpvim/ctrlp.vim'
8
	Plug 'dense-analysis/ale'
8
	Plug 'dense-analysis/ale'
9
	Plug 'airblade/vim-gitgutter'
9
	Plug 'airblade/vim-gitgutter'
  
10
	Plug 'carlsmedstad/vim-bicep'
10
call plug#end()
11
call plug#end()
11
  
12
  
12
set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4
13
set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4
...