1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-27 21:51:43 +00:00

Securing gitconfig, adding nm fix

This commit is contained in:
J. Fernando Sánchez 2015-03-15 23:29:01 +01:00
parent 55a553e490
commit d7923606ef
3 changed files with 19 additions and 2 deletions

View File

@ -306,6 +306,8 @@
;; (setq x-select-enable-clipboard nil)
;; (setq x-select-enable-primary t)
(setq flycheck-temp-prefix ".flycheck")
;;; .emacs ends here
(custom-set-variables
;; custom-set-variables was added by Custom.

View File

@ -5,8 +5,9 @@
tool = vimdiff
[alias]
d = difftool
[github]
user = balkian
[include]
path = ~/.gitconfig_secret
[color]
ui = true
@ -16,3 +17,6 @@ lg2 = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan
lg = !"git lg1"
[core]
excludesfile = /home/jfernando/.gitignore_global
[include]
path = ~/.gitconfig_secret

11
not_dots/network-manager-resume Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# This script gets NetworkManager out of suspend.
case $1 in
suspend|suspend_hybrid|hibernate)
# No need to do anything here.
;;
resume|thaw)
nmcli nm sleep false
;;
esac