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

    根据个人喜好编写,仅供参考。
    upd. on 2019.10.24 删掉了一大堆东西,看起来舒服一些?
    upd. on 2019.10.26 开始用考场配置啦
    upd. on 2019.11.2 联赛前最后一次改考场配置
    upd. on 2020.1.10 把一些没用的删掉了
    upd. on 2020.1.27 发现 ( ext{eshell}) 蛮好的,懒得用 ( ext{gdb}) 了,删掉了一键编译和打开 ( ext{gdb}) 的快捷键
    upd. on 2020.4.25 改了一下缩进格式

    (global-set-key (kbd "C-s") 'save-buffer)
    (global-set-key (kbd "C-a") 'mark-whole-buffer)
    (global-set-key (kbd "RET") 'newline-and-indent)
    
    (ido-mode t)
    
    (setq-default cursor-type 'bar)
    (setq-default default-tab-width 4)
    (setq-default indent-tabs-mode nil)
    (setq c-basic-offset 4)
    (setq-default c-default-style "linux")
    (setq frame-title-format "%b")
    
    (set-frame-parameter (selected-frame) 'alpha (list 85 50))
    (set-background-color "gray15")
    (set-foreground-color "gray")
    
    (custom-set-variables
     '(inhibit-startup-screen t)
     '(scroll-bar-mode nil)
     '(menu-bar-mode nil)
     '(tool-bar-mode nil)
     '(show-paren-mode t))
    (custom-set-faces
     '(default ((t (:family "Monaco" :foundry "outline" :slant normal :weight normal :height 120 :width normal)))))
    
  • 相关阅读:
    div3--C. Pipes
    Problem F Free Weights
    H
    Problem C Careful Ascent
    Problem L. World Cup
    Problem E. Bet
    Problem D. Ice Cream Tower
    A. Number Theory Problem
    A
    软考知识点梳理--项目评估
  • 原文地址:https://www.cnblogs.com/zsbzsb/p/11313303.html
Copyright © 2011-2022 走看看