diff --git a/.config/terminator/config b/.config/terminator/config index 032d639..89a0f39 100644 --- a/.config/terminator/config +++ b/.config/terminator/config @@ -15,6 +15,7 @@ [[default]] [[[child1]]] parent = window0 + profile = default type = Terminal [[[window0]]] parent = "" @@ -27,6 +28,7 @@ background_type = transparent font = Droid Sans Mono Dotted 15 foreground_color = "#ffffff" + scroll_on_output = False scrollback_infinite = True scrollbar_position = hidden show_titlebar = False diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 7a20b6e..4161b8b 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -13,7 +13,7 @@ ;; (package-initialize) (setq gc-cons-threshold 100000000) -(defconst spacemacs-version "0.105.8" "Spacemacs version.") +(defconst spacemacs-version "0.105.20" "Spacemacs version.") (defconst spacemacs-emacs-min-version "24.3" "Minimal version of Emacs.") (if (not (version<= spacemacs-emacs-min-version emacs-version)) diff --git a/.gitconfig b/.gitconfig index 34386ef..9cf26ee 100644 --- a/.gitconfig +++ b/.gitconfig @@ -15,6 +15,7 @@ submodule-pull = submodule foreach git pull ours = "!f() { git checkout --ours $@ && git add $@; }; f" theirs = "!f() { git checkout --theirs $@ && git add $@; }; f" + praise = blame [diff] renamelimit = 0 diff --git a/.spacemacs b/.spacemacs index 3a06390..32f25b5 100644 --- a/.spacemacs +++ b/.spacemacs @@ -50,6 +50,7 @@ values." dotspacemacs-additional-packages '( s protobuf-mode + systemd ) ;; A list of packages and/or extensions that will not be install and loaded. dotspacemacs-excluded-packages '( @@ -294,6 +295,10 @@ BUFFER may be either a buffer or its name (a string)." (setq flycheck-display-error 0.2) (setq x-gtk-use-system-tooltips nil) (setq flycheck-display-errors-function 'flycheck-display-error-messages-unless-error-list) + (setq vc-ignore-dir-regexp + (format "\\(%s\\)\\|\\(%s\\)" + vc-ignore-dir-regexp + tramp-file-name-regexp)) (setq tramp-ssh-controlmaster-options "-o ControlMaster=auto -o ControlPath='tramp.%%C' -o ControlPersist=no") @@ -359,7 +364,11 @@ BUFFER may be either a buffer or its name (a string)." ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(org-support-shift-select (quote always)) - '(safe-local-variable-values (quote ((eval setenv "GOPATH" "/home/barak/src/agro"))))) + '(safe-local-variable-values + (quote + ((eval setenv "GOPATH" "/home/barak/src/cayley") + (eval setenv "GOPATH" "/home/barak/src/livemd") + (eval setenv "GOPATH" "/home/barak/src/agro"))))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful.