This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(dolist (face org-level-faces) | |
;; (message (format "%S\n" (face-all-attributes face))) | |
(message (format "%S\n" (face-all-attributes face))) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package magit | |
:ensure t | |
:init | |
(setq magit-last-seen-setup-instructions "1.4.0") | |
:config | |
(setq magit-repo-dirs '("~/.homesick/repos/dotfiles")) | |
(add-hook 'magit-hode-hook 'evil-leader-mode) | |
(add-hook 'magit-mode-hook 'turn-off-evil-mode) | |
(message (format "Value of magit-mode-hook after: %S" magit-mode-hook)) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package magit | |
:ensure t | |
:init | |
(setq magit-last-seen-setup-instructions "1.4.0") | |
:config | |
(setq magit-repo-dirs '("~/.homesick/repos/dotfiles")) | |
(add-hook 'magit-hode-hook 'evil-leader-mode) | |
(add-hook 'magit-mode-hook 'turn-off-evil-mode) | |
(message (format "Value of magit-mode-hook after: %S" magit-mode-hook)) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun get-comint-candidates () | |
(let ((start (car comint-input-ring)) | |
(end (car (cdr comint-input-ring))) | |
(completed (append (nthcdr 2 comint-input-ring) nil)) | |
)) | |
(butlast (nthcdr start baz) (- (length baz) end)) | |
) | |
(defun comint-completion-source () | |
(interactive) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun get-comint-candidates () | |
(let ((start (car comint-input-ring)) ;; <- this variable | |
(end (car (cdr comint-input-ring))) | |
(completed (append (nthcdr 2 comint-input-ring) nil)) | |
)) | |
(butlast (nthcdr start baz) (- (length baz) end)) | |
) | |
(defun comint-completion-source () | |
(interactive) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
typedef struct { | |
int foo; | |
int bar; | |
int baz; | |
int slartibartfast; | |
} foobar; | |
int main(void) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
URxvt.font: xft:Inconsolatazi4:size=11:antialias=true:hinting=true | |
URxvt.letterSpace: -2 | |
! XFT and Font settings | |
Xft.dpi: 96 | |
Xft.antialias: true | |
Xft.hinting: true | |
Xft.autohint: true | |
Xft.hintstyle: hintslight | |
Xft.lcdfilter: lcdlegacy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Last login: Mon Jul 13 15:39:32 2015 from 212.130.118.23 | |
% [33msbrg[39m[32m[@][39m[33msbrg[39m [36m~[39m | |
[32mλ[39m [33msbrg[39m[32m[@][39m[33msbrg[39m [36m~[39m | |
[32mλ[39m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tramp: Opening connection for sbrg@vps using ssh... | |
Tramp: Sending command `exec ssh -l sbrg -o ControlMaster=auto -o ControlPath='tramp.%C' -o ControlPersist=no -e none vps' | |
Tramp: Waiting for prompts from remote shell... | |
Timeout reached, see buffer `*tramp/ssh sbrg@vps*' for details | |
Tramp: Waiting for prompts from remote shell...failed | |
Tramp: Opening connection for sbrg@vps using ssh...failed | |
byte-code: Timeout reached, see buffer `*tramp/ssh sbrg@vps*' for details |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#user html; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; |