Guest User

Untitled

a guest
Dec 6th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 2.26 KB | None | 0 0
  1. (custom-set-variables
  2.   ;; custom-set-variables was added by Custom.
  3.   ;; If you edit it by hand, you could mess it up, so be careful.
  4.   ;; Your init file should contain only one such instance.
  5.   ;; If there is more than one, they won't work right.
  6.  '(column-number-mode t)
  7.  '(cursor-in-non-selected-windows nil)
  8.  '(fuel-scaffold-developer-name "Mukhamed Karanashev")
  9.  '(show-paren-mode t)
  10.  '(standard-indent 4)
  11.  '(tab-width 2))
  12. (custom-set-faces
  13.   ;; custom-set-faces was added by Custom.
  14.   ;; If you edit it by hand, you could mess it up, so be careful.
  15.   ;; Your init file should contain only one such instance.
  16.   ;; If there is more than one, they won't work right.
  17.  '(show-paren-match ((((class color) (background light)) (:background "#bfe8df")))))
  18.  
  19. (cua-selection-mode t)
  20.  
  21. (set-language-environment 'UTF-8)
  22. (setq default-input-method "cyrillic-translit")
  23.  
  24. (setq inhibit-startup-message t)
  25.  
  26. ;; turn off toolbar
  27. (tool-bar-mode -1)
  28.  
  29. (global-set-key [(control tab)] 'other-window)
  30.  
  31. (setq scroll-conservatively 50)
  32. (setq scroll-margin 4)
  33.  
  34. ;; yes or no
  35. (fset 'yes-or-no-p 'y-or-n-p)
  36.  
  37. ;; haskell emacs mode
  38. (load "~/.emacs.d/lib/haskell-mode/haskell-site-file")
  39. (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
  40. (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
  41. ;;(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  42. ;; (add-hook 'haskell-mode-hook 'font-lock-mode)
  43. ;; hayoo
  44. (global-set-key [(control meta down-mouse-3)] 'imenu)
  45.  
  46.  
  47. ;; Factor mode
  48. (load-file "e:/progs/factor/misc/fuel/fu.el")
  49. (require 'factor-mode)
  50.  
  51. ;; ido-mode
  52. (require 'ido)
  53. (ido-mode t)
  54.  
  55. ;; workspaces
  56. ;; (add-to-list 'load-path "~/.emacs.d/lib")
  57. ;; (require 'workspaces)
  58. ;; (global-set-key [?\C-q] 'workspace-goto)
  59.  
  60. ;; nyan-mode
  61. (load-file "~/.emacs.d/lib/nyan-mode/nyan-mode.el")
  62. (require 'nyan-mode)
  63.  
  64. ;; htmlize
  65. (load-file "~/.emacs.d/lib/htmlize.el")
  66. (require 'htmlize)
  67.  
  68. ;; ibuffer
  69. (global-set-key [\C-x \C-b] 'ibuffer)
  70. (autoload 'ibuffer "ibuffer" "List buffers." t)
  71.  
  72. ;; color-theme
  73. (add-to-list 'load-path "~/.emacs.d/lib/color-theme-6.6.0/")
  74. (require 'color-theme)
  75. (color-theme-initialize)
  76. (color-theme-tango)
  77.  
  78. ;; EasyPG
  79. (require 'epa-file)
  80. (epa-file-enable)
  81.  
  82. ;; key binding for comment
  83. (global-set-key [\C-x \C-q] 'ibuffer)
  84.  
  85.  
  86. (cd "E:/P")
Add Comment
Please, Sign In to add comment