Add LaTeX vim bindings, change i3 config

master
Marvin Johanning 2020-05-29 19:09:18 +02:00
parent f19135c26a
commit 4cf17c80e7
6 changed files with 21 additions and 12 deletions

View File

@ -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"

20
.vimrc
View File

@ -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 <C-z> <ESC>u
"leader plus ( will create () and put user inside
nnoremap <leader>" viw<ESC>a"<ESC>bi"<ESC>lel
nnoremap <leader>' viw<ESC>a'<ESC>bi'<ESC>ll
nnoremap <Space><Space> <kDivide><+++><CR>ciw
nnoremap <Space><Space> <kDivide><+++><CR>ca<
"- will delete the line and paste it on the line below
nnoremap - 0y$Do<ESC>p$i<ESC>
"Open .vimrc (ev) and source it (sv)
@ -66,10 +68,14 @@ noremap <silent> <c-d> :call smooth_scroll#down(&scroll, 0, 2)<CR>
noremap <silent> <c-b> :call smooth_scroll#up(&scroll*2, 0, 4)<CR>
noremap <silent> <c-f> :call smooth_scroll#down(&scroll*2, 0, 4)<CR>
"RSpec mappings
map <Leader>t :call RunCurrentSpecFile()<CR>
map <Leader>s :call RunNearestSpec()<CR>
map <Leader>l :call RunLastSpec()<CR>
map <Leader>a :call RunAllSpecs()<CR>
"map <Leader>t :call RunCurrentSpecFile()<CR>
"map <Leader>s :call RunNearestSpec()<CR>
"map <Leader>l :call RunLastSpec()<CR>
"map <Leader>a :call RunAllSpecs()<CR>
"For creating German-style quotation for LaTeX's babel package
nnoremap <leader>q i"`<+++>"'<ESC>
let g:vimtex_view_general_viewer = 'zathura' " Setting Zathura as the default viewer for LaTeX
"Colour stuff
syntax on

2
.zshrc
View File

@ -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"}'