diff --git a/apps/de/kanshi/config b/apps/de/kanshi/config index adac056..26e0f35 100644 --- a/apps/de/kanshi/config +++ b/apps/de/kanshi/config @@ -5,6 +5,12 @@ profile desktop-H { exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh" } +profile desktop-H { + output "Samsung Electric Company SyncMaster H1AK500000" enable mode 3840x2160 position 0,0 scale 1 transform normal + output "Dell Inc. DELL U2719DC 5DL4QS2" disable + output "Dell Inc. DELL U2719DC 9DL4QS2" disable +} + profile desktop-H { output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 1440,560 scale 1 transform normal exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-single-workspace.sh" diff --git a/apps/de/waybar/config b/apps/de/waybar/config index e7871e9..9b2fa63 100644 --- a/apps/de/waybar/config +++ b/apps/de/waybar/config @@ -1,7 +1,7 @@ { "layer": "top", "position": "bottom", - "output": ["DP-2", "eDP-1"], + "output": ["DP-1", "eDP-1"], "height": 32, "modules-left": ["sway/workspaces"], "modules-center": ["clock"], diff --git a/apps/git/config b/apps/git/config index 729fa9b..ec636c2 100644 --- a/apps/git/config +++ b/apps/git/config @@ -77,3 +77,9 @@ path = $ENV_PATH/gitconfig [color] ui = auto + +# This next lines include Netlify's Git Credential Helper configuration in your Git configuration. +[include] + path = /home/daniel/.home/.netlify/helper/git-config +[init] + defaultBranch = master diff --git a/apps/neovim/init.vim b/apps/neovim/init.vim index 0233fc1..95f385e 100644 --- a/apps/neovim/init.vim +++ b/apps/neovim/init.vim @@ -83,6 +83,7 @@ hi Normal ctermbg=NONE hi ColorColumn ctermbg=18 hi TooLongColorColumn ctermbg=18 ctermfg=1 hi ActiveBuffer ctermbg=4 ctermfg=0 +hi DirtyBuffer ctermbg=3 ctermfg=0 hi StatusLine ctermbg=18 ctermfg=7 hi StatusLineNC ctermbg=18 ctermfg=7 @@ -158,13 +159,24 @@ set foldtext=NeatFoldText() " TODO: only update this portion when needed instead of every render? function! StatusLineBufferByNum(bufnum) + let l:bufinfo = getbufinfo(a:bufnum)[0] let l:prefix = ' %#InactiveBuffer#' let l:suffix = '%* ' - let l:bufinfo = getbufinfo(a:bufnum)[0] + + if l:bufinfo.changed + let l:prefix = '%#DirtyBuffer# ' + let l:suffix = ' %*' + end + if l:bufinfo['hidden'] == 0 && index(l:bufinfo['windows'], g:statusline_winid) >= 0 let l:prefix = '%#ActiveBuffer# ' let l:suffix = ' %*' + if l:bufinfo.changed + let l:prefix = '%#ActiveBuffer# *' + let l:suffix = ' %*' + end endif + return l:prefix . fnamemodify(bufname(a:bufnum), ':t') . l:suffix endfunction diff --git a/apps/shell/fish/aliases.fish b/apps/shell/fish/aliases.fish index 5ad8222..2d2e656 100755 --- a/apps/shell/fish/aliases.fish +++ b/apps/shell/fish/aliases.fish @@ -5,9 +5,9 @@ alias tree 'ls --tree --level=3' alias lA 'ls -a' alias ll 'ls -l' alias la 'll -a' -alias lt 'll -t modified' +alias lt 'll -s modified' alias lT 'lt -r' -alias lc 'lt -t accessed' +alias lc 'lt -s accessed' alias lC 'lc -r' set -gx CDPATH $CDPATH . $NICE_HOME diff --git a/apps/shell/fish/paths.fish b/apps/shell/fish/paths.fish index a4cd5fc..8a63aae 100755 --- a/apps/shell/fish/paths.fish +++ b/apps/shell/fish/paths.fish @@ -11,7 +11,8 @@ set -U fish_user_paths \ $HOME/.bin \ $HOME/.cargo/bin \ $HOME/.nimble/bin \ - $HOME/.yarn/bin + $HOME/.yarn/bin \ + $HOME/.netlify/helper/bin test -d $HOME/.local/bin && set -U fish_user_paths $HOME/.local/bin $fish_user_paths test -d $HOME/.bin && set -U fish_user_paths $HOME/.local/bin $fish_user_paths