[code](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. '(ecb-options-version "2.32") '(ecb-primary-secondary-mouse-buttons (quote mouse-1--C-mouse-1)) '(scroll-bar-mode nil) '(tool-bar-mode nil)) ...
;; .emacs ;;-----------------------------------------中文设定---------------------------------------------- ;; Setup GBK environment (require 'mule-gbk) (set-terminal-coding-system 'chinese-gbk) (set-keyboard-coding-system 'chinese-gbk) (set-language-environment 'chinese-gbk) (setq locale-coding-system 'chinese-gbk) (setq current-language-environment "Chinese-GBK") ;; Setup X Selection for mule...
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. '(column-number-mode t) '(display-time-mode t) '(ecb-primary-secondary-mouse-buttons (quote mouse-1--mouse-2)) '(inhibit-startup-screen t) '(show-p...
我的emacs配置文件 说明 应朋友要求,共享一下我的emacs配置文件。稍微整理了一下,还是有点乱,大家将就看吧。 我的配置文件参考了水木社区BBS和其他网站很多人的文章以及配置文件,由于是好多年来一点一点攒起来的,因此无法一一列出,请原谅。 从头开始一段一段贴吧。 基本环境 配色方案设定 几乎一天到晚面对着emacs,为了防止眼睛瞎掉,所以选个比较不刺眼的配色方案。 (require 'color-theme) ;;(color-theme-initializ...
我每次备份都只备份了用export出的dump数据文件以及关掉数据库的冷备份. 可是在目录 /u01/oradata/INSTANCE/archive 下有很多归档文件 -rw-r----- 1 oracle oinstall 104857088 mar 16 11:58 1_347.dbf -rw-r----- 1 oracle oinstall 104857088 mar 16 15:58 1_348.dbf -rw-r----- 1 oracle oinstall 104857088 mar 16 17:16 1_349.dbf ... 要不要备份呢? 如果要的话怎么个备法?所有的必须连续吗? 刚开始,所知不多,求教
我每次备份都只备份了用export出的dump数据文件以及关掉数据库的冷备份.\r\n可是在目录 /u01/oradata/INSTANCE/archive 下有很多归档文件\r\n-rw-r----- 1 oracle oinstall 104857088 mar 16 11:58 1_347.dbf\r\n-rw-r----- 1 oracle oinstall 104857088 mar 16 15:58 1_348.dbf\r\n-rw-r----- 1 oracle oinstall 104857088 mar 16 17:16 1_349.dbf\r\n...\r\n要不要备份呢? 如果要的话怎么个备法?所有的必须连续吗?\r\n\r\n刚开始...
emacs配置文件2 ;;普通设置 (setq inhibit-startup-message t);关闭起动时闪屏 (setq visible-bell t);关闭出错时的提示声 (show-paren-mode t);显示括号匹配 ;(set-default-font "-adobe-courier-medium-r-normal--14-100-100-100-m-90-iso10646-1");;字体设置 (column-number-mode t);显示列号 (setq frame-title-format "%n%F/%b");在窗口的标题栏上显示文件名称 (mouse-avoidance-mode 'animate);光标靠近鼠标指针时,让鼠标指...
emacs配置文件1 ;;普通设置 (setq inhibit-startup-message t);关闭起动时闪屏 (setq visible-bell t);关闭出错时的提示声 (show-paren-mode t);显示括号匹配 ;(set-default-font "-adobe-courier-medium-r-normal--14-100-100-100-m-90-iso10646-1");;字体设置 (column-number-mode t);显示列号 (setq frame-title-format "%n%F/%b");在窗口的标题栏上显示文件名称 (mouse-avoidance-mode 'animate);光标靠近鼠标指针时,让鼠标指...