mirror of
https://github.com/balkian/dotfiles.git
synced 2024-12-04 17:12:29 +00:00
Securing gitconfig, adding nm fix
This commit is contained in:
parent
55a553e490
commit
d7923606ef
@ -306,6 +306,8 @@
|
|||||||
;; (setq x-select-enable-clipboard nil)
|
;; (setq x-select-enable-clipboard nil)
|
||||||
;; (setq x-select-enable-primary t)
|
;; (setq x-select-enable-primary t)
|
||||||
|
|
||||||
|
(setq flycheck-temp-prefix ".flycheck")
|
||||||
|
|
||||||
;;; .emacs ends here
|
;;; .emacs ends here
|
||||||
(custom-set-variables
|
(custom-set-variables
|
||||||
;; custom-set-variables was added by Custom.
|
;; custom-set-variables was added by Custom.
|
||||||
|
@ -5,8 +5,9 @@
|
|||||||
tool = vimdiff
|
tool = vimdiff
|
||||||
[alias]
|
[alias]
|
||||||
d = difftool
|
d = difftool
|
||||||
[github]
|
[include]
|
||||||
user = balkian
|
path = ~/.gitconfig_secret
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
ui = true
|
ui = true
|
||||||
|
|
||||||
@ -16,3 +17,6 @@ lg2 = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan
|
|||||||
lg = !"git lg1"
|
lg = !"git lg1"
|
||||||
[core]
|
[core]
|
||||||
excludesfile = /home/jfernando/.gitignore_global
|
excludesfile = /home/jfernando/.gitignore_global
|
||||||
|
|
||||||
|
[include]
|
||||||
|
path = ~/.gitconfig_secret
|
11
not_dots/network-manager-resume
Executable file
11
not_dots/network-manager-resume
Executable 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
|
Loading…
Reference in New Issue
Block a user