summaryrefslogtreecommitdiff
path: root/configs/rcs/emacs.d/config/fcuny-base.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-08-05 18:30:45 -0700
committerFranck Cuny <franck.cuny@gmail.com>2018-08-05 18:30:45 -0700
commit5ddb72e86d9556e670a9350e9cc8d0d18ac213c8 (patch)
tree6b766356160b5f511da87f90fd3551009ab1da04 /configs/rcs/emacs.d/config/fcuny-base.el
parent[emacs] set font size for osx (diff)
downloademacs.d-5ddb72e86d9556e670a9350e9cc8d0d18ac213c8.tar.gz
Shuffling things around in this repo
Diffstat (limited to 'configs/rcs/emacs.d/config/fcuny-base.el')
-rw-r--r--configs/rcs/emacs.d/config/fcuny-base.el69
1 files changed, 69 insertions, 0 deletions
diff --git a/configs/rcs/emacs.d/config/fcuny-base.el b/configs/rcs/emacs.d/config/fcuny-base.el
new file mode 100644
index 0000000..bca68c8
--- /dev/null
+++ b/configs/rcs/emacs.d/config/fcuny-base.el
@@ -0,0 +1,69 @@
+(defvar fcuny-path-home (getenv "HOME")
+ "Path to the user's home directory.")
+
+(defvar fcuny-path-workspace (expand-file-name "workspace" fcuny-path-home)
+ "Path to the workspace.")
+
+(defvar fcuny-path-go (expand-file-name "go" fcuny-path-workspace)
+ "Path to GOPATH.")
+
+(defvar fcuny-path-go-bin (expand-file-name "bin" fcuny-path-go)
+ "Path to the go binaries.")
+
+(defvar fcuny-path-git-twitter (expand-file-name "git.twitter.biz" fcuny-path-workspace)
+ "Path to twitter's git repositories.")
+
+(defvar fcuny-path-git-github (expand-file-name "github.com" fcuny-path-workspace)
+ "Path to github's git repositories.")
+
+(defvar fcuny-path-svn-twitter (expand-file-name "svn.twitter.biz" fcuny-path-workspace)
+ "Path to twitter's SVN repositories.")
+
+(defvar fcuny-path-puppet-linter-svn (expand-file-name "twitter-ops/utilities/puppet/.puppet-lint.rc"
+ fcuny-path-svn-twitter)
+ "Path to the linter's configuration for twitter-ops.")
+
+(defvar fcuny-path-emacs-var (expand-file-name "var" user-emacs-directory)
+ "Path to some files for Emacs.")
+
+(defvar fcuny-path-emacs-elpa (expand-file-name "elpa" fcuny-path-emacs-var)
+ "Path to elpa's local files.")
+
+(defvar fcuny-projects-ignored-dirs '(".git" ".svn" "target" "elpa")
+ "Ignore the following directories when browsing with projectile.")
+
+(defvar fcuny-bookmarks-dir (expand-file-name "bookmarks" fcuny-path-emacs-var)
+ "Path to save the bookmarks")
+
+(defvar fcuny-custom-settings (expand-file-name "emacs-custom.el" fcuny-path-emacs-var)
+ "Path to emacs custom variables.")
+
+(defun fcuny-rename-this-buffer-and-file ()
+ "Renames current buffer and file it is visiting."
+ (interactive)
+ (let ((name (buffer-name))
+ (filename (buffer-file-name))
+ (read-file-name-function 'read-file-name-default))
+ (if (not (and filename (file-exists-p filename)))
+ (error "Buffer '%s' is not visiting a file!" name)
+ (let ((new-name (read-file-name "New name: " filename)))
+ (cond ((get-buffer new-name)
+ (error "A buffer named '%s' already exists!" new-name))
+ (t
+ (rename-file filename new-name 1)
+ (rename-buffer new-name)
+ (set-visited-file-name new-name)
+ (set-buffer-modified-p nil)
+ (message "File '%s' successfully renamed to '%s'" name (file-name-nondirectory new-name))))))))
+
+(defun fc/check-work-machine-p ()
+ "Returns t if this is a work machine"
+ (string-match "tw-mbp.*" (system-name)))
+
+(defun fc/check-source-p ()
+ "Finds if the current python file is in the `source' repository."
+ (and (executable-find "check.pex")
+ (buffer-file-name)
+ (string-match "src/source/.*\.py$" (buffer-file-name))))
+
+(provide 'fcuny-base)