diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/.Xresources | 0 | ||||
-rw-r--r-- | .config/.bashrc | 4 | ||||
-rw-r--r-- | .config/.tmux.conf | 3 | ||||
-rw-r--r-- | .config/.vimrc | 7 | ||||
-rw-r--r-- | .config/mpd.conf | 5 |
5 files changed, 6 insertions, 13 deletions
diff --git a/.config/.Xresources b/.config/.Xresources new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.config/.Xresources diff --git a/.config/.bashrc b/.config/.bashrc index 5c72cd3..5125b22 100644 --- a/.config/.bashrc +++ b/.config/.bashrc @@ -5,14 +5,12 @@ PS1="\w > " PS2=">> " PATH="${HOME}/clone/dotfiles/scripts:${PATH}" +PATH="${HOME}/.local/bin:${PATH}" EDITOR='vim' LOGDIR='~/log' alias log="${EDITOR} ${LOGDIR}/`date +%d_%m_%Y`" -alias vimconfig="${EDITOR} ~/.vimrc" -alias nvimconfig="${EDITOR} ~/.config/nvim/init.lua" -alias weather='curl wttr.in' if command -v startx >/dev/null 2>&1 ; then if [[ -z $DISPLAY ]] && [[ $(tty) = "/dev/tty1" ]]; then diff --git a/.config/.tmux.conf b/.config/.tmux.conf index 77f32f1..12fb1b5 100644 --- a/.config/.tmux.conf +++ b/.config/.tmux.conf @@ -1,6 +1,3 @@ set-option -g prefix M-a unbind-key C-b bind-key M-a send-prefix - -set -g @plugin 'tmux-plugins/tpm' -run '~/.tmux/plugins/tpm/tpm' diff --git a/.config/.vimrc b/.config/.vimrc index a321704..a04badd 100644 --- a/.config/.vimrc +++ b/.config/.vimrc @@ -1,8 +1,6 @@ "visual syntax on let g:netrw_banner=0 -set number -set relativenumber set termguicolors set background=dark colorscheme quiet @@ -17,7 +15,6 @@ hi incsearch guifg=#dcade6 guibg=#242829 hi MatchParen guifg=#dcade6 guibg=#242829 "formatting -"set textwidth=80 set nowrap autocmd BufRead,BufNewFile *.c { set cindent @@ -26,8 +23,8 @@ autocmd BufRead,BufNewFile *.c { "functional set clipboard+=unnamedplus -set nohls -set is +set hlsearch +set incsearch "bindings let mapleader="," diff --git a/.config/mpd.conf b/.config/mpd.conf index 77018bf..073ab9d 100644 --- a/.config/mpd.conf +++ b/.config/mpd.conf @@ -1,5 +1,6 @@ music_directory "~/music" playlist_directory "~/.config/mpd/playlists" +state_file "~/.config/mpd/state" auto_update "yes" bind_to_address "127.0.0.1" @@ -7,6 +8,6 @@ restore_paused "yes" max_output_buffer_size "16384" audio_output { - type "pipewire" - name "PipeWire Sound Server" + type "pulse" + name "Pulse device" } |