Fix some windows settings

This commit is contained in:
Tom Willemse 2018-07-18 13:44:17 -07:00
parent 4975325497
commit 55c0f1af40

View file

@ -32,7 +32,10 @@
(require 'ivy)
(require 'grep)
(require 'magit)
(require 'alert))
(require 'alert)
(require 'fill-column-indicator)
(require 'projectile)
(require 'sort))
(defun oni-windows-nt--disable-ivy (orig-fun &rest args)
"Disable ivy while running ORIG-FUN with ARGS."
@ -58,6 +61,7 @@
(setq projectile-generic-command "\"C:\\Program Files\\Git\\usr\\bin\\find.exe\" . -type d \"(\" -path \"*/node_modules\" -o -path \"*/upload-test\" -o -path \"*/dlls\" -o -path \"*/apps/*/img\" -o -path \"*/apps/*/video\" -o -path \"*/apps/*/font\" -o -path \"*/apps/*/content\" -o -path \"*/apps/*/favicons\" -o -path \"*/apps/*/pages.*\" -o -path \"*/.intl\" \")\" -prune -o -type f -print0")
(setq projectile-git-command "\"C:/Program Files/Git/bin/git.exe\" ls-files -zco --exclude-standard")
(setq projectile-indexing-method 'alien)
(setq sort-fold-case t)
(setq-default buffer-file-coding-system 'utf-8-unix)
@ -80,6 +84,9 @@
(with-eval-after-load 'vc
(require 'vc-p4))
(with-eval-after-load 'fill-column-indicator
(setq fci-always-use-textual-rule t))
(server-mode)
(provide 'oni-windows-nt)