Skip to content

Commit

Permalink
update emacs conf
Browse files Browse the repository at this point in the history
  • Loading branch information
Taoufik El Aoumari authored May 12, 2022
1 parent 6d4b664 commit 1d48032
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions conf/_emacs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

;; backup in one place. flat, no tree structure
(setq backup-directory-alist '(("" . "~/.emacs.d/backup")))

;; show line numbers
;; show line & column numbers
(global-display-line-numbers-mode)
(setq column-number-mode t)

;; UTF
(prefer-coding-system 'utf-8)
Expand All @@ -17,22 +17,24 @@
;; turn wrapping on in horizontally-split windows
(setq truncate-partial-width-windows nil)

(setq inhibit-splash-screen t)

;; no tool bar
;(tool-bar-mode nil)
(tool-bar-mode nil)
(setq inhibit-splash-screen t)

;; use color fonts
(global-font-lock-mode t)

;; color selection
(transient-mark-mode t)

;; no cursor blinking
;; disable cursor blinking
(blink-cursor-mode nil)

;; show paren matches
(setq blink-matching-paren t)
(setq show-paren-delay 0)
(show-paren-mode t)

;; tab size
(setq default-tab-width 4)

0 comments on commit 1d48032

Please sign in to comment.