diff options
author | luxagraf <sng@luxagraf.net> | 2020-12-09 09:43:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-12-09 09:43:56 -0500 |
commit | 79f97feb961d400d7f2347a0c00efce843999236 (patch) | |
tree | 389a8ee16d78cd31c691f99e99fc892ebe6fac76 | |
parent | b5f9119f640afe8090f2c699671118192600b527 (diff) |
added missing files from old laptop
-rw-r--r--[l---------] | .config/mpd/mpd.conf | 11 | ||||
-rw-r--r-- | .config/ranger/bookmarks | 2 | ||||
-rw-r--r-- | .config/sway/config | 5 | ||||
-rwxr-xr-x | .ssh/config | 27 | ||||
-rw-r--r-- | .tmux/thesetup | 11 | ||||
-rw-r--r-- | .vimrc | 6 |
6 files changed, 40 insertions, 22 deletions
diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf index fb28bca..1081004 120000..100644 --- a/.config/mpd/mpd.conf +++ b/.config/mpd/mpd.conf @@ -1 +1,10 @@ -/home/lxf/.dotfiles/mpdconf
\ No newline at end of file +db_file "~/.mpd/database" +music_directory "/home/lxf/music/library" +playlist_directory "/home/lxf/music/playlists" +log_file "/home/lxf/.mpd/mpd.log" +pid_file "/home/lxf/.mpd/mpd.pid" +state_file "/home/lxf/.mpd/mpdstate" +audio_output { + type "alsa" + name "My alsa Device" +} diff --git a/.config/ranger/bookmarks b/.config/ranger/bookmarks index 9a8fa01..ad62cd4 100644 --- a/.config/ranger/bookmarks +++ b/.config/ranger/bookmarks @@ -1,4 +1,4 @@ -':/home/lxf/notes/recipes +':/home/lxf/writing/luxagraf/lttr d:/home/lxf/documents l:/home/lxf/writing/luxagraf b:/home/lxf/writing/lbh diff --git a/.config/sway/config b/.config/sway/config index faea312..78222db 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -1,4 +1,5 @@ set $mod Mod1 +set $mod2 Mod4 set $term alacritty set $background /mnt/storage/pictures/desktops/mountains_night_sky_dark.jpg set $screenshot grim ~/pictures/screenshots/scrn-$(date +"%Y-%m-%d-%H-%M-%S").png @@ -33,8 +34,8 @@ input "1739:0:Synaptics_TM3075-002" { drag enabled } # change focus -#bindsym $mod+j focus left -#bindsym $mod+k focus right +bindsym $mod2+j focus left +bindsym $mod2+k focus right #bindsym $mod+l focus up #bindsym $mod+semicolon focus down diff --git a/.ssh/config b/.ssh/config index 5104dd7..557c69b 100755 --- a/.ssh/config +++ b/.ssh/config @@ -1,36 +1,35 @@ -Host lux - Hostname 149.28.230.188 +Host lxfold + Hostname 108.61.156.57 user lxf - Port 24598 + Port 25978 CheckHostIP yes TCPKeepAlive yes - ForwardX11 yes IdentityFile ~/.ssh/id_ed25519 Host lxf - Hostname 149.28.44.132 + Hostname 45.32.1.95 user lxf - Port 24598 + Port 25978 CheckHostIP yes TCPKeepAlive yes - ForwardX11 yes IdentityFile ~/.ssh/id_ed25519 -Host luxgit +Host lxfolder Hostname 149.28.44.132 - user git + user lxf Port 24598 CheckHostIP yes TCPKeepAlive yes + ForwardX11 yes IdentityFile ~/.ssh/id_ed25519 -Host wlp - Hostname 149.28.112.177 - user wlp - Port 24598 +Host luxgit + Hostname 45.32.1.95 + user git + Port 25978 CheckHostIP yes TCPKeepAlive yes - #IdentityFile ~/.ssh/id_ed25519 + IdentityFile ~/.ssh/id_ed25519 Host dis Hostname 155.138.214.118 diff --git a/.tmux/thesetup b/.tmux/thesetup index 50e6eb5..a8490d9 100644 --- a/.tmux/thesetup +++ b/.tmux/thesetup @@ -12,14 +12,19 @@ rename-window "" neww -t 2 -n '' #create and new window for newsboat send 'newsboat' enter #move to done folder and list neww -t 3 -n '' -splitw -h -p 24 +splitw -h -p 22 selectp -t 1 # select the original pane -splitw -h -p 67 -send "v" enter #open vim +splitw -h -p 69 +send "cd writing/lbh/ && v lbh.txt" enter #open vim neww -t 4 -n '' #create and new window for newsbeuter send 'mpd && music' enter #open rss reader neww -t 5 -n '' #create and new window for newsbeuter send 'ranger' enter #open ranger +neww -t 6 -n '' +splitw -h -p 22 +selectp -t 1 # select the original pane +splitw -h -p 69 +send 'cd ~/writing/conde/wired/ && v' enter #neww -t 6 -n '' #send 'cd ~/sites/notes' enter #splitw -h -p 40 # split it into a third @@ -393,11 +393,15 @@ let g:ctrlp_custom_ignore = { "}}} "FZF {{{ let g:fzf_preview_window='right:60%' +let g:fzf_history_dir = '~/.local/share/fzf-history' + +set grepprg=rg\ --vimgrep\ --smart-case\ --hidden\ --follow + nnoremap <leader>. :FZF<cr> nnoremap <leader>r :History<cr> nnoremap <leader>w :FZF ~/writing/conde/wired/<cr> nnoremap <leader>a :FZF app/<cr> -nnoremap <leader>l :FZF ~/writing/luxagraf/<cr> +nnoremap <leader>l :Rg<cr> nnoremap <leader>g :BLines<cr> "}}} " FZF Notational Velocity plugin {{{ |