免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 7609 | 回复: 18
打印 上一主题 下一主题

我的emacs配置文件 ~/.emacs [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-07 18:38 |只看该作者 |倒序浏览
  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. '(ecb-options-version "2.32")
  7. '(ecb-primary-secondary-mouse-buttons (quote mouse-1--C-mouse-1))
  8. '(scroll-bar-mode nil)
  9. '(tool-bar-mode nil))

  10. (defun sg-mode-hook-func ()
  11. (set-process-sentinel
  12.    (get-buffer-process (current-buffer))
  13.    'kill-buffer-on-exit))
  14. (add-hook 'shell-mode-hook 'sg-mode-hook-func)
  15. (add-hook 'gdb-mode-hook 'sg-mode-hook-func)
  16. (custom-set-faces
  17.   ;; custom-set-faces was added by Custom.
  18.   ;; If you edit it by hand, you could mess it up, so be careful.
  19.   ;; Your init file should contain only one such instance.
  20.   ;; If there is more than one, they won't work right.
  21. '(default ((t (:inherit nil :stipple nil :background "black" :foreground "grey" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 90 :width normal :foundry "unknown" :family "DejaVu Sans Mono")))))

  22. ;; 全屏
  23. ;;(defun my-fullscreen ()
  24. ;;(interactive)
  25. ;;(x-send-client-message
  26. ;;  nil 0 nil "_NET_WM_STATE" 32
  27. ;;   '(2 "_NET_WM_STATE_FULLSCREEN" 0)))

  28. ;; 水平最大化
  29. ;;(defun my-maximized-horz ()
  30. ;;(interactive)
  31. ;;(x-send-client-message
  32. ;;   nil 0 nil "_NET_WM_STATE" 32
  33. ;;   '(1 "_NET_WM_STATE_MAXIMIZED_HORZ" 0)))

  34. ;; 垂直最大化
  35. ;;(defun my-maximized-vert ()
  36. ;;(interactive)
  37. ;;(x-send-client-message
  38. ;;   nil 0 nil "_NET_WM_STATE" 32
  39. ;;   '(1 "_NET_WM_STATE_MAXIMIZED_VERT" 0)))

  40. ;; 最大化
  41. ;;(defun my-maximized ()
  42. ;;(my-maximized-vert)
  43. ;;(my-maximized-horz))

  44. ;; 启动时最大化
  45. ;;(cond
  46. ;;((eq window-system 'x)
  47. ;;(my-maximized)
  48. ;;)
  49. ;;)

  50. ;;设置C语言编译命令
  51. ;;(set 'compile-command' "gcc -g ")

  52. ;;以 y/n代表 yes/no
  53. (fset 'yes-or-no-p 'y-or-n-p)

  54. ;;光标靠近鼠标指针时,让鼠标指针自动让开,别挡住视线
  55. (mouse-avoidance-mode 'animate)

  56. ;;支持emacs和外部程序的粘贴
  57. (setq x-select-enable-clipboard t)

  58. ;;设置背景色和字体色
  59. (set-foreground-color "grey")
  60. (set-background-color "black")

  61. ;;显示列号
  62. (setq column-number-mode t)

  63. ;;关闭启动画面
  64. (setq inhibit-startup-message t)

  65. ;;设置 sentence-end 可以识别中文标点
  66. (setq sentence-end "\\([。!?]\\|……\\|[.?!][]\"')}]*\\($\\|[ \t]\\)\\)[ \t\n]*")
  67. (setq sentence-end-double-space nil)

  68. ;;括号匹配时显示另外一边的括号,而不是烦人的跳到另一个括号
  69. (show-paren-mode t)
  70. (setq show-paren-style 'parentheses)

  71. ;;在标题栏显示buffer的名字,而不是 emacs@wangyin.com 这样没用的提示
  72. (setq frame-title-format "emacs@%b")

  73. ;;让 Emacs 可以直接打开和显示图片
  74. ;;(auto-image-file-mode)

  75. ;; 高亮显示要拷贝的区域
  76. (transient-mark-mode t)

  77. ;;光标显示为一竖线
  78. (setq-default cursor-type 'bar)

  79. ;;进行语法加亮
  80. (global-font-lock-mode t)

  81. ;;不产生备份文件
  82. (setq make-backup-files nil)            

  83. ;;临时文件放到同一个目录下
  84. (setq backup-directory-alist '(("." . "/tmp")))

  85. ;;用空格代替tab
  86. (setq-default indent-tabs-mode nil)

  87. ;; 解决emacs shell显示问题
  88. (setq ansi-color-for-comint-mode t)
  89. (customize-group 'ansi-colors)
  90. (kill-this-buffer) ; 关闭设置所产生的定制窗口        

  91. ;;不显示ecbTip
  92. (setq ecb-tip-of-the-day nil)

  93. ;; CC-mode配置 http://cc-mode.sourceforge.net/
  94. (require 'cc-mode)
  95. (require 'xcscope)
  96. (c-set-offset 'inline-open 0)
  97. (c-set-offset 'friend '-)
  98. (c-set-offset 'substatement-open 0)

  99. ;;C/C++语言编辑策略
  100. (setq tab-width 4 indent-tabs-mode nil)
  101. ;; hungry-delete and auto-newline
  102. (c-toggle-auto-hungry-state 1)
  103. ;;按键定义
  104. (define-key c-mode-base-map [(control \`)] 'hs-toggle-hiding)
  105. (define-key c-mode-base-map [(return)] 'newline-and-indent)
  106. (define-key c-mode-base-map [(f9)] 'compile)
  107. (define-key c-mode-base-map [(meta \`)] 'c-indent-command)
  108. ;;(define-key c-mode-base-map [(tab)] 'hippie-expand)
  109. (define-key c-mode-base-map [(tab)] 'my-indent-or-complete)
  110. (define-key c-mode-base-map [(meta ?/)] 'semantic-ia-complete-symbol-menu)


  111. ;; 配置Semantic的检索范围:
  112. (setq semanticdb-project-roots
  113.     (list
  114.         (expand-file-name "/")))

  115. ;; 自定义自动补齐命令,如果在单词中间就补齐,否则就是tab。
  116. (defun my-indent-or-complete ()
  117.    (interactive)
  118.    (if (looking-at "\\>")
  119.      (hippie-expand nil)
  120.      (indent-for-tab-command))
  121. )

  122. (global-set-key [(control tab)] 'my-indent-or-complete)

  123. ;; 补全优先级
  124. (autoload 'senator-try-expand-semantic "senator")
  125. (setq hippie-expand-try-functions-list
  126.      '(
  127.       senator-try-expand-sematic
  128.       try-expand-dabbrev
  129.       try-expand-dabbrev-visible
  130.       try-expand-dabbrev-all-buffers
  131.       try-expand-dabbrev-from-kill
  132.       try-complete-file-name-partially
  133.       try-complete-file-name
  134.       try-expand-all-abbrevs
  135.       try-expand-list
  136.       try-expand-line
  137.       try-complete-lisp-symbol-partially
  138.       try-complete-lisp-symbol))

  139. ;;多窗口gdb
  140. (setq gdb-many-windows t)
  141. (load-library "multi-gud.el")
  142. (load-library "multi-gdb-ui.el")

  143. ;;shell,gdb退出后,自动关闭该buffer
  144. (defun kill-buffer-on-exit (process state)
  145. (message "%s" state)
  146. (if (or
  147.        (string-match "exited abnormally with code.*" state)
  148.        (string-match "finished" state))
  149.       (kill-buffer (current-buffer))))
复制代码


我也不太了解这些,欢迎大家指点!有好东东也共享出来啊。。。

论坛徽章:
0
2 [报告]
发表于 2009-12-08 09:25 |只看该作者
自己顶一个, 大家共享好东西啊.

论坛徽章:
0
3 [报告]
发表于 2009-12-08 10:04 |只看该作者
LZ你这配置还远远不够啊
我也是个emacs新手,与LZ共勉

http://xahlee.org/emacs/emacs.html
http://www.nongnu.org/emacs-tiny-tools/
http://planet.emacsen.org/
顺便推荐三个网站

论坛徽章:
89
水瓶座
日期:2014-04-01 08:53:31天蝎座
日期:2014-04-01 08:53:53天秤座
日期:2014-04-01 08:54:02射手座
日期:2014-04-01 08:54:15子鼠
日期:2014-04-01 08:55:35辰龙
日期:2014-04-01 08:56:36未羊
日期:2014-04-01 08:56:27戌狗
日期:2014-04-01 08:56:13亥猪
日期:2014-04-01 08:56:02亥猪
日期:2014-04-08 08:38:58程序设计版块每日发帖之星
日期:2016-01-05 06:20:00程序设计版块每日发帖之星
日期:2016-01-07 06:20:00
4 [报告]
发表于 2009-12-08 11:15 |只看该作者
我就讨厌emacs,总是不停的配置配置,然后还是长的那么难看。

论坛徽章:
0
5 [报告]
发表于 2009-12-08 11:49 |只看该作者
;_____settings___________
(setq inhibit-splash-screen t)
(tool-bar-mode nil)
(menu-bar-mode nil)
(scroll-bar-mode nil)
(column-number-mode t)
(setq-default make-backup-files nil)
(fset 'yes-or-no-p 'y-or-n-p)
;______muse_______________
(require 'muse-mode)
(require 'muse-html)
(require 'muse-project)

;______color theme_________
(require 'smart-compile+)
(fset 'cc 'smart-compile)

(require 'color-theme)
(color-theme-initialize)
(color-theme-midnight)

;______file template________
(require 'file-template)
(add-hook 'find-file-not-found-hooks 'file-template-auto-insert 'append)

;______key__________________
(global-set-key "\M-g"                 'goto-line)
(global-set-key "\M-s"                 'isearch-forward-regexp)
(global-set-key "\M-r"                 'isearch-backward-regexp)
(global-set-key "\M-h"                 'backward-kill-word)
(global-set-key "\C-h"                 'backward-delete-char)
(global-set-key "\C-\M-y"        'x-clipboard-yank)
(fset 'r   'replace-string)
(fset 'qr  'query-replace)
(fset 'rr  'replace-regexp)
(fset 'qrr 'query-replace-regexp)
;
;_______ c++  _____________
(defun traxex-mode()
  (linum-mode t)
  (define-key c-mode-base-map        "("                'skeleton-pair-insert-maybe)
  (define-key c-mode-base-map        "{"                'skeleton-pair-insert-maybe)
  (local-set-key                "\M-j"                'semantic-complete-analyze-inline)
  (local-set-key                [(control /)]        'semantic-ia-complete-symbol-menu)
  (local-set-key                [(meta /)]        'semantic-ia-fast-jump)
  (c-set-style "bsd")
(add-hook 'c++-mode-hook 'traxex-mode)

(require 'xcscope+)
(add-to-list 'auto-mode-alist '("\\.h\\'"    . c++-mode))
(add-to-list 'auto-mode-alist '("\\.c\\'"    . c++-mode))
(add-to-list 'auto-mode-alist '("\\.cc\\'"   . c++-mode))
(add-to-list 'auto-mode-alist '("\\.cpp\\'"  . c++-mode))
(add-to-list 'auto-mode-alist '("\\.ipp\\'"  . c++-mode))
(add-to-list 'auto-mode-alist '("\\.hpp\\'"  . c++-mode))
(add-to-list 'auto-mode-alist '("\\.cu\\'"   . c++-mode))
(add-to-list 'auto-mode-alist '("SConstruct" . python-mode))

(setq skeleton-pair t)
(global-set-key  "("           'skeleton-pair-insert-maybe)
(global-set-key  "{"           'skeleton-pair-insert-maybe)
(global-set-key  "\'"          'skeleton-pair-insert-maybe)
(global-set-key  "\""          'skeleton-pair-insert-maybe)
(global-set-key  "["           'skeleton-pair-insert-maybe)
(global-set-key  "\C-j"        'dabbrev-expand)



(custom-set-faces
'(default ((t (:inherit nil :stipple nil :background "black" :foreground "grey85" :inverse-video nil :box nil :strike-through nil verline nil :underline nil :slant normal :weight normal :height 102 :width normal :foundry "microsoft" :family "YaHei Consolas Hybrid"))))

论坛徽章:
0
6 [报告]
发表于 2009-12-08 11:56 |只看该作者
Semantic 那个自动补全功能我觉得很鸡肋。。  不如不用。。

论坛徽章:
0
7 [报告]
发表于 2009-12-08 12:26 |只看该作者
不会用emacs和vim的人飘过

不过以前确实很努力的尝试过

论坛徽章:
0
8 [报告]
发表于 2009-12-08 15:04 |只看该作者

回复 #4 fender0107401 的帖子

我觉得不难看啊

Screenshot-1.png (169.34 KB, 下载次数: 54)

Screenshot-1.png

论坛徽章:
0
9 [报告]
发表于 2009-12-08 15:40 |只看该作者
左边那堆东西不好看,挺占屏幕的,而且好像没啥用。 不如一个一个的buffer自己切。

论坛徽章:
0
10 [报告]
发表于 2009-12-08 15:44 |只看该作者
原帖由 gtkmm 于 2009-12-8 15:40 发表
左边那堆东西不好看,挺占屏幕的,而且好像没啥用。 不如一个一个的buffer自己切。

用宽屏显示器的话,我需要左边的那堆,眼睛可以直视代码

emacs用来写代码再好不过了,缩进,对齐,补全。实在太爽了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP