├── .gitignore ├── .gitmodules ├── Cask ├── README.md ├── custom.el ├── customizations ├── my-buffers.el ├── my-editing.el ├── my-keys.el ├── my-shell.el └── my-ui.el ├── init.el ├── linux-customizations ├── my-linux-keys.el └── my-linux-ui.el ├── mac-customizations ├── my-mac-keys.el ├── my-mac-tweaks.el └── my-mac-ui.el ├── mode-inits ├── init-cider.el ├── init-clojure-mode.el ├── init-cmake.el ├── init-company-mode.el ├── init-dash-at-point.el ├── init-dired+.el ├── init-dockerfile.el ├── init-flx.el ├── init-flycheck.el ├── init-go-mode.el ├── init-haskell-mode.el ├── init-inf-ruby.el ├── init-magit.el ├── init-markdown-mode.el ├── init-mo-git-blame.el ├── init-projectile.el ├── init-rainbowdelimiters.el ├── init-rubocop-mode.el ├── init-ruby-mode.el ├── init-rust-mode.el ├── init-scala-mode2.el ├── init-smart-mode-line.el ├── init-smartparens.el ├── init-smex.el ├── init-solarize-theme.el ├── init-textile-mode.el ├── init-toml.el ├── init-webmode.el └── init-yaml-mode.el └── utilities ├── chomp.el ├── comment-or-uncomment-region-or-line.el ├── count-words.el ├── delete-this-file.el ├── indent-whole-buffer.el ├── jekyll.el ├── load-directory.el ├── move-lines.el ├── rename-file-and-buffer.el ├── slick-copy.el ├── vendor.el └── visit-ansi-term.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/Cask -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/README.md -------------------------------------------------------------------------------- /custom.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/custom.el -------------------------------------------------------------------------------- /customizations/my-buffers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/customizations/my-buffers.el -------------------------------------------------------------------------------- /customizations/my-editing.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/customizations/my-editing.el -------------------------------------------------------------------------------- /customizations/my-keys.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/customizations/my-keys.el -------------------------------------------------------------------------------- /customizations/my-shell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/customizations/my-shell.el -------------------------------------------------------------------------------- /customizations/my-ui.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/customizations/my-ui.el -------------------------------------------------------------------------------- /init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/init.el -------------------------------------------------------------------------------- /linux-customizations/my-linux-keys.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/linux-customizations/my-linux-keys.el -------------------------------------------------------------------------------- /linux-customizations/my-linux-ui.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/linux-customizations/my-linux-ui.el -------------------------------------------------------------------------------- /mac-customizations/my-mac-keys.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mac-customizations/my-mac-keys.el -------------------------------------------------------------------------------- /mac-customizations/my-mac-tweaks.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mac-customizations/my-mac-tweaks.el -------------------------------------------------------------------------------- /mac-customizations/my-mac-ui.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mac-customizations/my-mac-ui.el -------------------------------------------------------------------------------- /mode-inits/init-cider.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-cider.el -------------------------------------------------------------------------------- /mode-inits/init-clojure-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-clojure-mode.el -------------------------------------------------------------------------------- /mode-inits/init-cmake.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-cmake.el -------------------------------------------------------------------------------- /mode-inits/init-company-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-company-mode.el -------------------------------------------------------------------------------- /mode-inits/init-dash-at-point.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-dash-at-point.el -------------------------------------------------------------------------------- /mode-inits/init-dired+.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-dired+.el -------------------------------------------------------------------------------- /mode-inits/init-dockerfile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-dockerfile.el -------------------------------------------------------------------------------- /mode-inits/init-flx.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-flx.el -------------------------------------------------------------------------------- /mode-inits/init-flycheck.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-flycheck.el -------------------------------------------------------------------------------- /mode-inits/init-go-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-go-mode.el -------------------------------------------------------------------------------- /mode-inits/init-haskell-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-haskell-mode.el -------------------------------------------------------------------------------- /mode-inits/init-inf-ruby.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-inf-ruby.el -------------------------------------------------------------------------------- /mode-inits/init-magit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-magit.el -------------------------------------------------------------------------------- /mode-inits/init-markdown-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-markdown-mode.el -------------------------------------------------------------------------------- /mode-inits/init-mo-git-blame.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-mo-git-blame.el -------------------------------------------------------------------------------- /mode-inits/init-projectile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-projectile.el -------------------------------------------------------------------------------- /mode-inits/init-rainbowdelimiters.el: -------------------------------------------------------------------------------- 1 | (require 'rainbow-delimiters) 2 | -------------------------------------------------------------------------------- /mode-inits/init-rubocop-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-rubocop-mode.el -------------------------------------------------------------------------------- /mode-inits/init-ruby-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-ruby-mode.el -------------------------------------------------------------------------------- /mode-inits/init-rust-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-rust-mode.el -------------------------------------------------------------------------------- /mode-inits/init-scala-mode2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-scala-mode2.el -------------------------------------------------------------------------------- /mode-inits/init-smart-mode-line.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-smart-mode-line.el -------------------------------------------------------------------------------- /mode-inits/init-smartparens.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-smartparens.el -------------------------------------------------------------------------------- /mode-inits/init-smex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-smex.el -------------------------------------------------------------------------------- /mode-inits/init-solarize-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-solarize-theme.el -------------------------------------------------------------------------------- /mode-inits/init-textile-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-textile-mode.el -------------------------------------------------------------------------------- /mode-inits/init-toml.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-toml.el -------------------------------------------------------------------------------- /mode-inits/init-webmode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-webmode.el -------------------------------------------------------------------------------- /mode-inits/init-yaml-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/mode-inits/init-yaml-mode.el -------------------------------------------------------------------------------- /utilities/chomp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/chomp.el -------------------------------------------------------------------------------- /utilities/comment-or-uncomment-region-or-line.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/comment-or-uncomment-region-or-line.el -------------------------------------------------------------------------------- /utilities/count-words.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/count-words.el -------------------------------------------------------------------------------- /utilities/delete-this-file.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/delete-this-file.el -------------------------------------------------------------------------------- /utilities/indent-whole-buffer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/indent-whole-buffer.el -------------------------------------------------------------------------------- /utilities/jekyll.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/jekyll.el -------------------------------------------------------------------------------- /utilities/load-directory.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/load-directory.el -------------------------------------------------------------------------------- /utilities/move-lines.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/move-lines.el -------------------------------------------------------------------------------- /utilities/rename-file-and-buffer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/rename-file-and-buffer.el -------------------------------------------------------------------------------- /utilities/slick-copy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/slick-copy.el -------------------------------------------------------------------------------- /utilities/vendor.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/vendor.el -------------------------------------------------------------------------------- /utilities/visit-ansi-term.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al3x/emacs/HEAD/utilities/visit-ansi-term.el --------------------------------------------------------------------------------