diff options
-rw-r--r-- | debian/.bashrc | 1 | ||||
-rwxr-xr-x | debian/.screenlayout/single.sh | 2 | ||||
-rw-r--r-- | emacs/.emacs.d/init.el | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/debian/.bashrc b/debian/.bashrc index 2ca605c..9fa6a6e 100644 --- a/debian/.bashrc +++ b/debian/.bashrc @@ -96,6 +96,7 @@ alias la='ls -A' # You may want to put all your additions into a separate file like # ~/.bash_aliases, instead of adding them here directly. # See /usr/share/doc/bash-doc/examples in the bash-doc package. +alias r=ranger alias gcc='gcc -O2 -lm' alias g++='g++ -O2 -lm' alias fpc='fpc -O1 -XS -gl' diff --git a/debian/.screenlayout/single.sh b/debian/.screenlayout/single.sh index 8040932..c7185ab 100755 --- a/debian/.screenlayout/single.sh +++ b/debian/.screenlayout/single.sh @@ -1,2 +1,2 @@ #!/bin/sh -xrandr --output VGA-0 --off --output LVDS --primary --mode 1280x800 --pos 0x0 --rotate normal --output S-video --off +xrandr --output DP-1 --off --output HDMI-1 --off --output eDP-1 --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-2 --off diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 1c9327b..7046c08 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -31,7 +31,7 @@ '(erc-nick "cnx") '(package-selected-packages (quote - (perl6-mode fireplace lua-mode markdown-mode smart-tabs-mode auctex wordnut magit geiser slime pdf-tools))) + (glsl-mode perl6-mode fireplace lua-mode markdown-mode smart-tabs-mode auctex wordnut magit geiser slime pdf-tools))) '(scroll-bar-mode nil) '(show-paren-mode t) '(tool-bar-mode nil) @@ -48,7 +48,7 @@ (savehist-mode 1) (setq-default inhibit-splash-screen t) -(setq-default initial-buffer-choice "/usr/share/dict/words") +(find-file-noselect "/usr/share/dict/words") (setq-default fill-column 79) (add-hook 'prog-mode-hook 'ruler-mode) (setq-default indent-tabs-mode nil) |