diff options
-rw-r--r-- | emacs | 7 | ||||
-rw-r--r-- | gitconfig | 2 | ||||
-rw-r--r-- | vim/vimrc | 1 |
3 files changed, 8 insertions, 2 deletions
@@ -3,5 +3,10 @@ (global-linum-mode) (setq linum-format "%d ") -;; no backups +;; no backup and autosave files (setq make-backup-files nil) +(setq backup-inhibited t) + +;; hilight actual line +(global-hl-line-mode 1) +(set-face-background 'hl-line "#333")
\ No newline at end of file @@ -7,4 +7,4 @@ [colors] ui = auto [core] - editor = emacs + editor = vim @@ -10,6 +10,7 @@ set tabstop=8 set shiftround set modeline set nobackup +set cursorline map <f9> :make<CR> map <f1> :execute 'NERDTreeToggle'<CR> |