2 Commits

Author SHA1 Message Date
  10sr bdac54ac28 Disable sqlind 6 months ago
  10sr f7571e5970 Update bookmark 6 months ago
1 changed files with 11 additions and 5 deletions
Split View
  1. +11
    -5
      emacs.el

+ 11
- 5
emacs.el View File

@@ -1367,6 +1367,8 @@ THEM are function and its args."


;; bookmarks
;; C-x B: Add bookmark
;; C-x b: List bookmarks

(set-variable 'bookmark-default-file
(expand-file-name (concat user-emacs-directory
@@ -1404,12 +1406,14 @@ THEM are function and its args."
ORIG-FUNC is the target function, and ARGS is the argument when it is called."
(bookmark-load bookmark-default-file)
(apply orig-func args)
(bookmark-save))
(bookmark-save nil bookmark-default-file))

(with-eval-after-load 'bookmark
(advice-add 'bookmark-set-internal
:around
'my-bookmark-set--advice))
'my-bookmark-set--advice)
(unless (file-readable-p bookmark-default-file)
(bookmark-save nil bookmark-default-file)))
(define-key ctl-x-map "b" 'list-bookmarks)
(when (fboundp 'counsel-bookmark)
(define-key ctl-x-map "b" 'counsel-bookmark))
@@ -1837,9 +1841,11 @@ ORIG-FUNC is the target function, and ARGS is the argument when it is called."
'(setq reb-re-syntax 'foreign-regexp)
))

(with-eval-after-load 'sql
(require 'sql-indent nil t))
(set-variable 'sqlind-basic-offset 4)
;; sqlind does not support create role so disable it...
(set-variable 'sql-use-indent-support nil)
;; (with-eval-after-load 'sql
;; (require 'sql-indent nil t))
;; (set-variable 'sqlind-basic-offset 4)
(add-to-list 'auto-mode-alist
'("\\.hql\\'" . sql-mode))
(set-variable 'sql-product 'postgres)


Loading…
Cancel
Save