mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 09:12:28 +00:00
Fix several issues related to fresh install
This commit is contained in:
@@ -1,9 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
p='picom sxhkd polybar'
|
p='picom sxhkd polybar dunst'
|
||||||
for i in $p; do pkill "$i"; done
|
for i in $p; do pkill "$i"; done
|
||||||
|
|
||||||
sxhkd &
|
sxhkd &
|
||||||
|
dunst &
|
||||||
|
|
||||||
monitors=$(xrandr | grep -swc 'connected')
|
monitors=$(xrandr | grep -swc 'connected')
|
||||||
|
|
||||||
|
@@ -12,11 +12,13 @@
|
|||||||
awscli2
|
awscli2
|
||||||
bandwhich
|
bandwhich
|
||||||
bat
|
bat
|
||||||
|
bind
|
||||||
chromium
|
chromium
|
||||||
direnv
|
direnv
|
||||||
|
dunst
|
||||||
exa
|
exa
|
||||||
fd
|
fd
|
||||||
firefox-devedition-bin
|
firefox
|
||||||
fzf
|
fzf
|
||||||
gimp
|
gimp
|
||||||
git
|
git
|
||||||
@@ -48,14 +50,15 @@
|
|||||||
signal-desktop
|
signal-desktop
|
||||||
slack
|
slack
|
||||||
spotify
|
spotify
|
||||||
|
starship
|
||||||
terraform
|
terraform
|
||||||
terraform-docs
|
|
||||||
terraform-lsp
|
terraform-lsp
|
||||||
tflint
|
tflint
|
||||||
tmux
|
tmux
|
||||||
tree
|
tree
|
||||||
unzip
|
unzip
|
||||||
vlc
|
vlc
|
||||||
|
vscode
|
||||||
youtube-dl
|
youtube-dl
|
||||||
zathura
|
zathura
|
||||||
zip
|
zip
|
||||||
@@ -112,6 +115,9 @@
|
|||||||
|
|
||||||
localVariables = {
|
localVariables = {
|
||||||
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#838383,underline";
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#838383,underline";
|
||||||
|
ZSH_DISABLE_COMPFIX = "true";
|
||||||
|
DISABLE_UNTRACKED_FILES_DIRTY="true";
|
||||||
|
CASE_SENSITIVE="true";
|
||||||
};
|
};
|
||||||
|
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
@@ -125,6 +131,8 @@
|
|||||||
eval "$(direnv hook zsh)"
|
eval "$(direnv hook zsh)"
|
||||||
eval "$(_RFD_COMPLETE=source_zsh rfd)"
|
eval "$(_RFD_COMPLETE=source_zsh rfd)"
|
||||||
eval "$(starship init zsh)"
|
eval "$(starship init zsh)"
|
||||||
|
|
||||||
|
setopt noincappendhistory
|
||||||
'';
|
'';
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
@@ -201,6 +209,11 @@
|
|||||||
set tabstop=2
|
set tabstop=2
|
||||||
set wildmenu
|
set wildmenu
|
||||||
|
|
||||||
|
" Remember line number
|
||||||
|
if has("autocmd")
|
||||||
|
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif
|
||||||
|
endif
|
||||||
|
|
||||||
" Search down into subfolders
|
" Search down into subfolders
|
||||||
" Provides tab-completion for all file-related tasks
|
" Provides tab-completion for all file-related tasks
|
||||||
set path+=**
|
set path+=**
|
||||||
|
@@ -8,7 +8,7 @@ super + Return
|
|||||||
|
|
||||||
# program launcher
|
# program launcher
|
||||||
super + d
|
super + d
|
||||||
dmenu_run
|
rofi -show run
|
||||||
|
|
||||||
# make sxhkd reload its configuration files:
|
# make sxhkd reload its configuration files:
|
||||||
super + Escape
|
super + Escape
|
||||||
|
Reference in New Issue
Block a user