diff --git a/.config/ranger/__pycache__/devicons.cpython-38.opt-1.pyc b/.config/ranger/__pycache__/devicons.cpython-38.opt-1.pyc index 8cb5dc4..52a319c 100644 Binary files a/.config/ranger/__pycache__/devicons.cpython-38.opt-1.pyc and b/.config/ranger/__pycache__/devicons.cpython-38.opt-1.pyc differ diff --git a/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc b/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc index 202f069..fb99e2c 100644 Binary files a/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc and b/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc differ diff --git a/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc b/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc index 615e0d6..505f1ac 100644 Binary files a/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc and b/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc differ diff --git a/.i3/config b/.i3/config index 721f1f7..d706acf 100644 --- a/.i3/config +++ b/.i3/config @@ -56,10 +56,10 @@ exec --no-startup-id volumeicon # Start Applications bindsym $mod+Ctrl+b exec st -e 'bmenu' -bindsym $mod+F2 exec qutebrowser -bindsym $mod+F3 exec st -e ranger +bindsym $mod+F2 exec brave +bindsym $mod+F3 exec st -e vifmrun bindsym $mod+Shift+F3 exec gksu pcmanfm -bindsym $mod+F5 exec st -e 'mocp' +bindsym $mod+F5 exec artha bindsym $mod+t exec --no-startup-id pkill compton bindsym $mod+Ctrl+t exec --no-startup-id compton -b bindsym $mod+Shift+d --release exec "killall dunst; exec notify-send 'restart dunst'" @@ -307,14 +307,13 @@ bindsym $mod+9 exec --no-startup-id blurlock # Autostart applications exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 exec --no-startup-id nitrogen --restore; sleep 1; compton -b -exec --no-startup-id manjaro-hello +#exec --no-startup-id manjaro-hello exec --no-startup-id nm-applet exec --no-startup-id xfce4-power-manager exec --no-startup-id pamac-tray exec --no-startup-id clipit # exec --no-startup-id blueman # exec_always --no-startup-id sbxkb -exec --no-startup-id start_conky_maia # exec --no-startup-id start_conky_green #exec --no-startup-id xautolock -time 120 -locker blurlock exec_always --no-startup-id ff-theme-util @@ -488,3 +487,5 @@ mode "$mode_gaps_outer" { bindsym Return mode "default" bindsym Escape mode "default" } + +exec "setxkbmap -option caps:escape" diff --git a/.vimrc b/.vimrc index fd096de..d656c29 100644 --- a/.vimrc +++ b/.vimrc @@ -1,7 +1,8 @@ ".vimrc Marvin Johanning @ marvinjohanning.de - set nocompatible filetype off +set swapfile +set dir=~/tmp " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim @@ -22,8 +23,9 @@ Plugin 'christoomey/vim-system-copy' Plugin 'terryma/vim-smooth-scroll' "Smooth scrolling Plugin 'mhartington/oceanic-next' "Theme OceanicNext Plugin 'jacoborus/tender.vim' "Theme Tender -Plugin 'thoughtbot/vim-rspec' "RSpec Plugin +" Plugin 'thoughtbot/vim-rspec' "RSpec Plugin Plugin 'MikeCoder/markdown-preview.vim' "Markdown preview +Plugin 'lervag/vimtex' " LaTeX " All of your Plugins must be added before the following line call vundle#end() @@ -54,7 +56,7 @@ nnoremap u "leader plus ( will create () and put user inside nnoremap " viwa"bi"lel nnoremap ' viwa'bi'll -nnoremap <+++>ciw +nnoremap <+++>ca< "- will delete the line and paste it on the line below nnoremap - 0y$Dop$i "Open .vimrc (ev) and source it (sv) @@ -66,10 +68,14 @@ noremap :call smooth_scroll#down(&scroll, 0, 2) noremap :call smooth_scroll#up(&scroll*2, 0, 4) noremap :call smooth_scroll#down(&scroll*2, 0, 4) "RSpec mappings -map t :call RunCurrentSpecFile() -map s :call RunNearestSpec() -map l :call RunLastSpec() -map a :call RunAllSpecs() +"map t :call RunCurrentSpecFile() +"map s :call RunNearestSpec() +"map l :call RunLastSpec() +"map a :call RunAllSpecs() + +"For creating German-style quotation for LaTeX's babel package +nnoremap q i"`<+++>"' +let g:vimtex_view_general_viewer = 'zathura' " Setting Zathura as the default viewer for LaTeX "Colour stuff syntax on diff --git a/.zshrc b/.zshrc index 2fc3aed..47c838a 100644 --- a/.zshrc +++ b/.zshrc @@ -26,6 +26,7 @@ alias download_mail="mbsync -a" # alias l="ls -sh" alias la="ls -ash" +alias vifm="vifmrun" #Variable exports export RTV_BROWSER=w3m @@ -61,6 +62,7 @@ source ~/.cache/wal/colors-tty.sh #Path changes PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH" +PATH="/usr/local/inferno/Linux/386/bin:$PATH" #Searching through history with dmenu alias history='cat $HISTFILE | sed -e "s/^:[ \t]*[0-9]*:[0-9]*;//g" | dmenu "$@" -l 7 -p "Command:" | ${SHELL:-"/bin/zsh"}'