diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/compton/compton.conf | 2 | ||||
-rw-r--r-- | .config/i3/config##desktop.Linux.Lowe | 5 | ||||
-rw-r--r-- | .config/nvim/after/ftplugin/c.vim | 3 | ||||
-rw-r--r-- | .config/nvim/after/ftplugin/tex.vim | 9 | ||||
-rwxr-xr-x | .config/nvim/init.vim | 2 |
5 files changed, 19 insertions, 2 deletions
diff --git a/.config/compton/compton.conf b/.config/compton/compton.conf index a0873cc..357f978 100644 --- a/.config/compton/compton.conf +++ b/.config/compton/compton.conf | |||
@@ -1,7 +1,7 @@ | |||
1 | # Shadow | 1 | # Shadow |
2 | shadow = true; | 2 | shadow = true; |
3 | shadow-radius = 0; | 3 | shadow-radius = 0; |
4 | shadow-offset-x = 10; | 4 | shadow-offset-x = 5; |
5 | shadow-offset-y = 5; | 5 | shadow-offset-y = 5; |
6 | log-level = "warn"; | 6 | log-level = "warn"; |
7 | # log-file = "/path/to/your/log/file"; | 7 | # log-file = "/path/to/your/log/file"; |
diff --git a/.config/i3/config##desktop.Linux.Lowe b/.config/i3/config##desktop.Linux.Lowe index 106cbe5..7cee7e4 100644 --- a/.config/i3/config##desktop.Linux.Lowe +++ b/.config/i3/config##desktop.Linux.Lowe | |||
@@ -36,6 +36,9 @@ bindsym $mod+u exec --no-startup-id ~/bin/bukuadd_c | |||
36 | # add taskwarrior/gtd calendar item | 36 | # add taskwarrior/gtd calendar item |
37 | bindsym $mod+Shift+t exec --no-startup-id ~/bin/td | 37 | bindsym $mod+Shift+t exec --no-startup-id ~/bin/td |
38 | 38 | ||
39 | # add taskwarrior/gtd inbox item | ||
40 | bindsym $mod+Shift+i exec --no-startup-id ~/bin/in | ||
41 | |||
39 | # swap caps lock and escape, set keyboard layout, 35 is ]/ü (layout agnostic) | 42 | # swap caps lock and escape, set keyboard layout, 35 is ]/ü (layout agnostic) |
40 | bindcode $mod+35 exec --no-startup-id "setxkbmap -model pc105 -layout us,tr -option grp:alt_shift_toggle,caps:swapescape" | 43 | bindcode $mod+35 exec --no-startup-id "setxkbmap -model pc105 -layout us,tr -option grp:alt_shift_toggle,caps:swapescape" |
41 | 44 | ||
@@ -58,7 +61,7 @@ bindsym $mod+minus scratchpad show | |||
58 | 61 | ||
59 | # shortcuts for frequent programs | 62 | # shortcuts for frequent programs |
60 | bindsym $mod+Shift+z exec zotero | 63 | bindsym $mod+Shift+z exec zotero |
61 | bindsym $mod+Shift+f exec thunar | 64 | bindsym $mod+Shift+f exec pcmanfm |
62 | 65 | ||
63 | # start a terminal | 66 | # start a terminal |
64 | bindsym $mod+Return exec kitty | 67 | bindsym $mod+Return exec kitty |
diff --git a/.config/nvim/after/ftplugin/c.vim b/.config/nvim/after/ftplugin/c.vim new file mode 100644 index 0000000..73fdd4b --- /dev/null +++ b/.config/nvim/after/ftplugin/c.vim | |||
@@ -0,0 +1,3 @@ | |||
1 | setlocal shiftwidth=8 | ||
2 | setlocal tabstop=8 | ||
3 | setlocal expandtab | ||
diff --git a/.config/nvim/after/ftplugin/tex.vim b/.config/nvim/after/ftplugin/tex.vim new file mode 100644 index 0000000..280c44b --- /dev/null +++ b/.config/nvim/after/ftplugin/tex.vim | |||
@@ -0,0 +1,9 @@ | |||
1 | call sandwich#util#addlocal([{ | ||
2 | \ 'buns': ['\textbf{', '}'], | ||
3 | \ 'input': ['B'], | ||
4 | \ }]) | ||
5 | |||
6 | call sandwich#util#addlocal([{ | ||
7 | \ 'buns': ['\emph{', '}'], | ||
8 | \ 'input': ['E'], | ||
9 | \ }]) | ||
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index e5085a8..ab433ca 100755 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim | |||
@@ -164,6 +164,8 @@ endif | |||
164 | 164 | ||
165 | let g:indentguides_ignorelist = ['text', 'tex', 'vimwiki'] | 165 | let g:indentguides_ignorelist = ['text', 'tex', 'vimwiki'] |
166 | 166 | ||
167 | set diffopt+=internal,algorithm:patience | ||
168 | |||
167 | " }}} | 169 | " }}} |
168 | 170 | ||
169 | "{{{Look and Feel | 171 | "{{{Look and Feel |