zoukankan      html  css  js  c++  java
  • 联赛emacs配置

    (custom-set-variables
     ;; custom-set-variables was added by Custom.
     ;; If you edit it by hand, you could mess it up, so be careful.
     ;; Your init file should contain only one such instance.
     ;; If there is more than one, they won't work right.
     '(ansi-color-names-vector ["#242424" "#e5786d" "#95e454" "#cae682" "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"])
     '(column-number-mode t)
     '(cua-mode t nil (cua-base))
     '(custom-enabled-themes (quote (deeper-blue)))
     '(menu-bar-mode nil)
     '(show-paren-mode t)
     '(tool-bar-mode nil))
    (custom-set-faces
     ;; custom-set-faces was added by Custom.
     ;; If you edit it by hand, you could mess it up, so be careful.
     ;; Your init file should contain only one such instance.
     ;; If there is more than one, they won't work right.
     )
    
    ;;上面是emacs自己调的
    ;;下面手打
    
    
    (global-set-key [f9] 'compile)
    (global-set-key [f10] 'gud-gdb)
    (global-set-key (kbd "C-a") 'mark-whole-buffer)
    (global-set-key (kbd "C-s") 'save-buffer)
    (global-set-key (kbd "C-z") 'undo)
    (global-set-key (kbd "C-i") 'previous-line)
    (global-set-key (kbd "C-k") 'next-line)
    (global-set-key (kbd "C-j") 'left-char)
    (global-set-key (kbd "C-l") 'right-char)
    (global-set-key [tab] 'tab-to-tab-stop)
    (setq c-default-style "awk")
    (global-set-key (kbd "C-u") 'delete-backward-char)
    (global-set-key (kbd "C-o") 'delete-char)
    (setq default-tab-width 4)
    (setq default-cursor-type 'bar)
    (set-frame-parameter (selected-frame) 'alpha (list 85 85))
    ;;早就能记了,希望考场上能记得所有的
    
  • 相关阅读:
    OpenCL 获取Program信息
    匈牙利算法
    经常使用的webservice接口
    庞果网之高斯公式
    T4 生成实体和简单的CRUD操作
    zTree实现地市县三级级联报错(三)
    AlphaBlend
    cocos2d-x 3.0 事件处理
    rman多通道全备份脚本
    Linux下的简单好用的计算器bc
  • 原文地址:https://www.cnblogs.com/xzz_233/p/7802228.html
Copyright © 2011-2022 走看看