commit b86e2e35a8799a7d27519928e5cf11cf4614c634
parent 066690fc684f5d744ef2d77c6d3ef281057fff79
Author: Ashymad <czilukim@o2.pl>
Date: Wed, 11 Apr 2018 16:20:29 +0200
Merge remote-tracking branch 'origin/master' into notwobug
Diffstat:
5 files changed, 28 insertions(+), 18 deletions(-)
diff --git a/astroid/.config/astroid/config b/astroid/.config/astroid/config
@@ -11,6 +11,10 @@
"level": "0"
}
},
+ "terminal": {
+ "height": "10",
+ "font_description": "Monofur Nerd Font"
+ },
"thread_index": {
"page_jump_rows": "6",
"sort_order": "newest",
@@ -62,8 +66,8 @@
"message_id_user": "",
"user_agent": "default",
"send_delay": "2",
- "format_flowed": "true",
- "close_on_success": "false"
+ "close_on_success": "false",
+ "format_flowed": "true"
},
"poll": {
"interval": "300",
@@ -101,10 +105,6 @@
"history_lines_to_show": "15",
"history_lines": "1000"
},
- "terminal": {
- "height": "10",
- "font_description": "Monofur Nerd Font"
- },
"accounts": {
"o2": {
"name": "Szymon Mikulicz",
diff --git a/fish/.config/fish/functions/aur-vcsync.fish b/fish/.config/fish/functions/aur-vcsync.fish
@@ -1,16 +1,14 @@
function aur-vcsync
source ~/.config/fish/utils/pacmsg.fish
set vcs_list git hg cvs svn bzr
- echo -n "" > /tmp/vcs.tmp
msg1 "Checking newest commit of repositories..."
- for vcs in $vcs_list
- set repos ~/.cache/aurutils/sync/*-$vcs
- for repo in $repos
- aur srcver $repo >> /tmp/vcs.tmp
- end
- end
+ aur srcver ~/.cache/aurutils/sync/*-$vcs_list > /tmp/vcs.tmp
msg1 "Comparing to locally installed versions..."
set updates (aur vercmp -p /tmp/vcs.tmp -d custom-aur)
+ if test -z "$updates"
+ msg3 "There is nothing to do"
+ exit
+ end
for update in $updates
echo Updating $update...
aur sync --no-ver \
diff --git a/i3/.i3/config b/i3/.i3/config
@@ -126,6 +126,9 @@ bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 10 # decrease
bindsym $mod+F12 exec --no-startup-id xbacklight -inc 10 # increase screen brightness
bindsym $mod+F11 exec --no-startup-id xbacklight -dec 10 # decrease screen brightness
+# Change wallpaper
+bindsym $mod+p exec --no-startup-id ~/.fehbg
+
# class border backgr. text indicator
client.focused #4f4f4f #4f4f4f #ffffff #4f4f4f
client.unfocused #323232 #323232 #aaaaaa #323232
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim
@@ -23,7 +23,8 @@ Plug 'vim-scripts/indentpython.vim'
Plug 'Vimjas/vim-python-pep8-indent'
" LaTeX
-Plug 'vim-latex/vim-latex'
+" Plug 'vim-latex/vim-latex'
+Plug 'lervag/vimtex'
" R
Plug 'jalvesaq/Nvim-R'
@@ -36,6 +37,9 @@ Plug 'tpope/vim-fugitive'
call plug#end()
+" Disable latexBox in polyglot
+let g:polyglot_disabled = ['latex']
+
let g:lightline = {
\ 'colorscheme': 'onedark',
\ }
@@ -62,14 +66,19 @@ function SetTeXOptions()
setlocal spell! spelllang=pl
endfunction
-let g:Tex_DefaultTargetFormat = 'pdf'
-let g:Tex_CompileRule_pdf = 'latexmk -pdf -f $*'
-let g:Tex_ViewRule_pdf = 'zathura'
+let g:vimtex_view_method = 'zathura'
+
+let g:vimtex_view_zathura_options = '-x "nvr --servername ' . v:servername . ' +%{line} %{input}"'
map <C-l> :NERDTreeToggle<CR>
let g:ycm_python_binary_path = 'python'
+if !exists('g:ycm_semantic_triggers')
+let g:ycm_semantic_triggers = {}
+endif
+let g:ycm_semantic_triggers.tex = g:vimtex#re#youcompleteme
+
syntax on
colorscheme onedark
set noshowmode
diff --git a/offlineimap/.offlineimap.py b/offlineimap/.offlineimap.py
@@ -7,7 +7,7 @@ def blockPrint():
def enablePrint():
sys.stdout = sys.__stdout__
-session = keepasshttp.start('ofim')
+session = keepasshttp.start('oflima')
def get_password( str ):
blockPrint()