dotfiles

:)
git clone https://git.sr.ht/~ashymad/dotfiles
Log | Files | Refs | Submodules | LICENSE

commit 3a2afcb0a90948376fbbf82365ce2a6a984292d1
parent 56c2a12d7ee6d8f26d4393cdff7e810e18940627
Author: Ashymad <czilukim@o2.pl>
Date:   Tue, 14 Nov 2017 00:37:50 +0100

.

Diffstat:
M.config/compton.conf | 6+++---
M.config/fish/config.fish | 2++
M.config/mpv/mpv.conf | 2+-
M.config/notifymuch/notifymuch.cfg | 2+-
A.config/nvim/ginit.vim | 1+
M.config/nvim/init.vim | 4----
M.emacs | 8+++++++-
M.i3/config | 2+-
8 files changed, 16 insertions(+), 11 deletions(-)

diff --git a/.config/compton.conf b/.config/compton.conf @@ -8,7 +8,7 @@ # Backend to use: "xrender" or "glx". # GLX backend is typically much faster but depends on a sane driver. -backend = "xrender"; +backend = "glx"; ################################# # @@ -47,7 +47,7 @@ glx-copy-from-front = false; # Useless with --glx-use-copysubbuffermesa. # Partially breaks --resize-damage. # Defaults to undefined. -glx-swap-method = "undefined"; +glx-swap-method = -1; #"undefined"; ################################# # @@ -184,7 +184,7 @@ refresh-rate = 0; # opengl-swc: Try to VSync with SGI_swap_control OpenGL extension. Only work on some drivers. Works only with GLX backend. Known to be most effective on many drivers. Does not actually control paint timing, only buffer swap is affected, so it doesn’t have the effect of --sw-opti unlike other methods. Experimental. # opengl-mswc: Try to VSync with MESA_swap_control OpenGL extension. Basically the same as opengl-swc above, except the extension we use. # (Note some VSync methods may not be enabled at compile time.) -vsync = "opengl"; +vsync = "opengl-swc"; # Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing. # Reported to have no effect, though. diff --git a/.config/fish/config.fish b/.config/fish/config.fish @@ -1,3 +1,5 @@ #!/bin/env fish alias ec "emacsclient -a \"\"" +alias fcd 'cd (fd -I -L -d 8 -t d . ~ | fzf)' + diff --git a/.config/mpv/mpv.conf b/.config/mpv/mpv.conf @@ -11,7 +11,7 @@ vo=gpu #opengl-vsync-fences=1 #opengl-waitvsync #opengl-glfinish -screenshot-directory=~/screenshots/ +screenshot-directory=~Pictures/screenshots/ #interpolation-threshold=-1 #hwdec=no fullscreen diff --git a/.config/notifymuch/notifymuch.cfg b/.config/notifymuch/notifymuch.cfg @@ -2,5 +2,5 @@ query = tag:new and tag:inbox mail_client = astroid recency_interval_hours = 48 -hidden_tags = inbox unread attachment replied sent encrypted signed +hidden_tags = unread attachment replied sent encrypted signed diff --git a/.config/nvim/ginit.vim b/.config/nvim/ginit.vim @@ -0,0 +1 @@ +Guifont DejaVu Sans Mono:h15 diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim @@ -1,7 +1,3 @@ -if exists('g:GuiLoaded') - Guifont DejaVu Sans Mono:h15 -endif - call plug#begin('~/.local/share/nvim/plugged') Plug 'joshdick/onedark.vim' diff --git a/.emacs b/.emacs @@ -8,6 +8,12 @@ (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) +;; (require 'paradox) +;; (paradox-enable) + +(require 'evil) +(evil-mode 1) + (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -18,7 +24,7 @@ '(ansi-color-names-vector ["#242424" "#e5786d" "#95e454" "#cae682" "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"]) '(custom-enabled-themes (quote (tsdh-dark))) - '(package-selected-packages (quote (paradox))) + '(package-selected-packages (quote (## evil paradox))) '(tool-bar-mode nil)) (custom-set-faces ;; custom-set-faces was added by Custom. diff --git a/.i3/config b/.i3/config @@ -150,7 +150,7 @@ mode "resize" { set $power_control "[l]ock log[o]ut [s]uspend [h]ibernate [r]eboot [p]oweroff" mode $power_control { bindsym l exec xflock4; mode "default" - bindsym o exec i3-msg exit; mode "default" + bindsym o exec xfce4-session-logout; mode "default" bindsym s exec systemctl suspend; mode "default" bindsym h exec systemctl hibernate; mode "default" bindsym r exec systemctl reboot; mode "default"