my dotfiles
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

some stuff

+13 -6
+1 -1
bat/.config/bat/config
··· 4 4 5 5 # Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes` 6 6 # for a list of all available themes 7 - --theme="pop-dark" 7 + --theme="base16" 8 8 9 9 # Enable this to use italic text on the terminal. This is not supported on all 10 10 # terminal emulators (like tmux, by default):
+7
git/.gitconfig
··· 69 69 70 70 # --------------------------------------------------- 71 71 72 + [merge] 73 + tool = nvimdiff 74 + [mergetool "nvimdiff"] 75 + cmd = nvim -d \"$LOCAL\" \"$MERGED\" \"$BASE\" \"$REMOTE\" -c \"wincmd w\" -c \"wincmd J\" 76 + 77 + # --------------------------------------------------- 78 + 72 79 [web] 73 80 browser = mozilla-firefox 74 81
+1 -1
nvim/.config/nvim/init.lua
··· 15 15 -- 16 16 17 17 -- General 18 - require('impatient') 18 + -- require('impatient') 19 19 require('plugins') 20 20 require('keymaps') 21 21 require('settings')
+4 -4
tmux/.tmux.conf
··· 65 65 # Customize the status line 66 66 set -g status-position bottom 67 67 set -g status-justify left 68 - set -g status-style 'bg=#303030 fg=#ededed dim' 68 + set -g status-style 'bg=#1e1e1e fg=#ededed dim' 69 69 set -g status-left '' 70 70 set -g status-right ' session: #S ' 71 71 72 - setw -g window-status-current-style 'fg=#303030 bg=#94ebeb bold' 73 - setw -g window-status-current-format ' #I#[fg=#303030]:#[fg=#303030]#W ' 72 + setw -g window-status-current-style 'fg=#1e1e1e bg=#15519b bold' 73 + setw -g window-status-current-format ' #I#[fg=#1e1e1e]:#[fg=#1e1e1e]#W ' 74 74 75 - setw -g window-status-style 'fg=#ededed bg=#303030' 75 + setw -g window-status-style 'fg=#ededed bg=#1e1e1e' 76 76 setw -g window-status-format ' #I#[fg=#ededed]:#[fg=#ededed]#W ' 77 77 78 78 setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold'