From d48c855093d10c5e5cc5fcaccd24c3fe88fcc2b9 Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Sat, 24 Aug 2019 23:21:17 +0300 Subject: change vim diff algorithm --- .config/nvim/init.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 0b72413..1f9b024 100755 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -164,6 +164,8 @@ endif let g:indentguides_ignorelist = ['text', 'tex', 'vimwiki'] +set diffopt+=internal,algorithm:patience + " }}} "{{{Look and Feel -- cgit v1.2.3-70-g09d2 From 8cb08c8a02f77054a3f4cfc9ab9470f4a76fddfc Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Sun, 25 Aug 2019 10:08:42 +0300 Subject: Mobile based i3 changes --- .config/i3/config##mobile.Linux.Luchs | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/.config/i3/config##mobile.Linux.Luchs b/.config/i3/config##mobile.Linux.Luchs index 3eefb06..8ef79c3 100644 --- a/.config/i3/config##mobile.Linux.Luchs +++ b/.config/i3/config##mobile.Linux.Luchs @@ -14,18 +14,18 @@ exec --no-startup-id xset -b & exec --no-startup-id nm-applet & # removable media -exec --no-startup-id udiskie --automount --file-manager thunar --tray --notify & +exec --no-startup-id udiskie --automount --file-manager pcmanfm --tray --notify & # set the wallpaper and other visuals exec --no-startup-id ~/.fehbg & exec --no-startup-id compton -b & -exec --no-startup-id xsettingsd & +# exec --no-startup-id xsettingsd & exec --no-startup-id gebaard -b exec --no-startup-id volnoti & # utilities -exec --no-startup-id dropbox & +# exec --no-startup-id dropbox & exec --no-startup-id copyq & # exec --no-startup-id conky --daemonize -c ~/.config/conky/conky.conf & # exec --no-startup-id conky --daemonize -c ~/.config/conky/task.conf & @@ -42,8 +42,14 @@ exec --no-startup-id $HOME/.config/polybar/launch.sh & # start the screensaver, '' at the end is not a typo exec --no-startup-id xidlehook --not-when-fullscreen --not-when-audio --timer normal 300 'betterlockscreen -l dimblur -t "Welcome Back"' '' -gaps inner 0 -gaps outer 0 +# start the brightness utility +exec --no-startup-id clight & + +# flash the active window +exec --no-startup-id flashfocus & + +gaps inner 5 +gaps outer 2 # Font for window titles font pango:Lato 11 @@ -81,8 +87,8 @@ bindsym XF86AudioPlay exec mpc toggle bindsym XF86AudioPrev exec /home/yigit/bin/mpcPrevSong.sh bindsym XF86AudioNext exec mpc next -bindsym XF86MonBrightnessUp exec xbacklight -inc 5 -bindsym XF86MonBrightnessDown exec xbacklight -dec 5 +bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 5 & +bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 5 & bindsym XF86TouchpadToggle exec --no-startup-id perl -e '{`xinput list-props 11` =~ /^.*Device Enabled.+?(\d)$/m and {$1 ? `xinput --disable 11 && dunstify -a "touchpad" "disabled"` : `xinput --enable 11 && dunstify -a "touchpad" "enabled"`}} ' @@ -264,9 +270,14 @@ mode "$mode_gaps_inner" { bindsym Escape mode "default" } +# disable borders for all windows for_window [class=".*"] border pixel 0 + +# zotero citation dialogs and preferences windows should float for_window [class="Zotero" instance="Toplevel" title="Quick Format Citation"] floating enable for_window [class="Zotero" instance="Toplevel" title="Progress"] floating enable +for_window [class="Zotero" window_role="pref"] floating enable + assign [class="^Thunderbird$"] 8 # class border backgr. text indicator child_border -- cgit v1.2.3-70-g09d2 From 884ae34fe14f67c8aa9cf3f8b94f8c039d2e2e7a Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Wed, 28 Aug 2019 15:58:19 +0300 Subject: add binding for indent guide toggle --- .config/nvim/init.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 0b72413..e5085a8 100755 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -228,6 +228,8 @@ nmap ` Sneak_s nmap ` Sneak_S nnoremap ' ` +nmap i :IndentGuidesToggle + """"""""""""""""""""""""""" " yanks/registers/clips " """"""""""""""""""""""""""" @@ -332,8 +334,8 @@ let g:startify_custom_header = "}}} "{{{ vimwiki -let g:vimwiki_list = [{'path': '/home/yigit/Dropbox/personal_wiki', - \ 'path_html': '~/Dropbox/personal_wiki_html', +let g:vimwiki_list = [{'path': '/home/yigit/Documents/personal_wiki', + \ 'path_html': '/home/yigit/Documents/personal_wiki_html', \ 'css_name': 'tufte.css', \ 'auto_export': 1}] let g:vimwiki_global_ext = 0 -- cgit v1.2.3-70-g09d2