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