diff --git a/README.md b/README.md index d420d84..7395e1a 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,3 @@ My personal configurations, managed with the 'dotdrop' submodule. + Notifications: `dunst` + PDF-Viewer: `zathura` + Transparency: `compton` - -## Profiles -+ `laptop`: All of the dotfiles -+ `win-sub`: Linux Subsystem in Windows -+ `work`: Everything I need for work -+ `dev`: Working on remote (dev-)servers diff --git a/dotfiles/rofi/config.rasi b/dotfiles/rofi/config.rasi index fe5c81d..0c913ff 100644 --- a/dotfiles/rofi/config.rasi +++ b/dotfiles/rofi/config.rasi @@ -1,6 +1,6 @@ configuration { show-icons: true; - font: "Inconsolata Nerd Font Mono 11"; + font: "InconsolataLGC Nerd Font Mono 11"; drun-display-format: "{icon} {name}"; display-run: " "; display-drun: " "; @@ -58,7 +58,7 @@ inputbar { prompt { enabled: true; font: "InconsolataLGC Nerd Font Mono 16"; - padding: 5 -12 0 12; + padding: 7 -12 0 12; text-color: @accent; } diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index 0fe4a37..647cf54 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -6,11 +6,17 @@ call vundle#begin() Plugin 'VundleVim/Vundle.vim' -Plugin 'tpope/vim-fugitive' " Git wrapper -Plugin 'tmsvg/pear-tree' " parathesis matching +" Show git-branch +Plugin 'tpope/vim-fugitive' -" Markdown -Plugin 'dhruvasagar/vim-table-mode' " manage markdown tables +" match parents +Plugin 'tmsvg/pear-tree' + +" tex helper +Plugin 'lervag/vimtex' + +" manage markdown tables (:TableModeToggle) +Plugin 'dhruvasagar/vim-table-mode' " fzf if executable("fzf") @@ -41,10 +47,6 @@ let g:pear_tree_pairs = { \ '<': {'closer': '>'} \ } -" Vimwiki -let g:vimwiki_list = [{'path': '~/vimwiki/', - \ 'syntax': 'markdown', 'ext': '.md'}] - " Airline let g:airline_theme='nord' let g:airline_powerline_fonts = 1 @@ -57,6 +59,9 @@ let g:nord_bold = 0 let g:nord_italic = 1 let g:nord_underline = 1 +" vimtex +let g:vimtex_view_general_viewer = 'zathura' + " fzf nmap :Files " ------------------------------------- Colors --------------------------------- @@ -67,7 +72,7 @@ filetype indent plugin on " ------------------------------------- General -------------------------------- set relativenumber -" :highlight LineNr ctermfg=white "color +":highlight LineNr ctermfg=white "color set showmatch " Highlights paranthesis set mat=5 set noswapfile @@ -110,6 +115,10 @@ let &t_SI = "\[6 q" let &t_SR = "\[4 q" let &t_EI = "\[2 q" +" ------------------------------------- vimtex --------------------------------- +nmap :VimtexCompile +nmap :VimtexTocToggle + " ------------------------------------- netrw ---------------------------------- nmap :Ex @@ -122,8 +131,3 @@ cmap Wq wq cmap Q q cmap W w cmap q1 q! - -" ------------------------------------- Pandoc --------------------------------- -nmap c :w! \| !~/scripts/pandoc-comp % -nmap o :!~/scripts/open-pdf % - diff --git a/dotfiles/zsh/zshrc b/dotfiles/zsh/zshrc index a10bc78..eef8d52 100644 --- a/dotfiles/zsh/zshrc +++ b/dotfiles/zsh/zshrc @@ -10,7 +10,6 @@ zstyle ':vcs_info:git:*' formats '%b ' export RPROMPT="" ## Exports -export TERM="xterm-256color" export EDITOR="vim" export LANG="en_US.UTF-8" export PATH=$PATH:$HOME/.local/bin:$HOME/scripts @@ -26,7 +25,6 @@ alias fonts="/home/$USER/.local/share/fonts" alias listfonts="fc-list :scalable=true:spacing=mono: family" alias cachefonts="fc-cache -f -v" -alias w="vim ~/vimwiki/index.md" alias r="ranger" alias s="cd ~/scripts/" alias c='clear'