mirror of
https://github.com/balkian/dotfiles.git
synced 2024-12-03 16:52: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-primary t)
|
||||
|
||||
(setq flycheck-temp-prefix ".flycheck")
|
||||
|
||||
;;; .emacs ends here
|
||||
(custom-set-variables
|
||||
;; custom-set-variables was added by Custom.
|
||||
|
@ -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
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