2016-01-12 03:58:57 +00:00
|
|
|
;;; packages.el --- Asm Layer packages File for Spacemacs
|
2016-01-06 09:13:05 +00:00
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2016-01-06 09:13:05 +00:00
|
|
|
;;
|
2016-01-12 03:58:57 +00:00
|
|
|
;; Author: Tu, Do Hoang <tuhdo1710@gmail.com>
|
2016-01-06 09:13:05 +00:00
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-01-06 09:13:05 +00:00
|
|
|
|
|
|
|
(setq asm-packages
|
|
|
|
'(
|
|
|
|
;; package names go here
|
|
|
|
asm-mode
|
2018-06-07 19:57:18 +00:00
|
|
|
company
|
2016-05-28 20:22:29 +00:00
|
|
|
electric-indent-mode
|
2016-04-05 04:08:34 +00:00
|
|
|
ggtags
|
2017-08-26 21:18:09 +00:00
|
|
|
counsel-gtags
|
2016-04-05 04:08:34 +00:00
|
|
|
helm-gtags
|
2016-01-06 09:13:05 +00:00
|
|
|
nasm-mode
|
|
|
|
x86-lookup
|
|
|
|
))
|
|
|
|
|
|
|
|
(defun asm/init-asm-mode ()
|
|
|
|
(use-package asm-mode
|
2016-01-12 03:58:57 +00:00
|
|
|
:init
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'asm-mode "h" 'x86-lookup)
|
2016-01-06 09:13:05 +00:00
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
;; We need to insert a non-indented line, otherwise it's annoying
|
2019-12-05 12:24:12 +00:00
|
|
|
;; every time we insert a comment for a routine
|
2016-01-06 09:13:05 +00:00
|
|
|
(define-key asm-mode-map (kbd "C-j") 'newline)
|
|
|
|
(add-hook 'asm-mode-hook #'asm-generic-setup))))
|
|
|
|
|
2016-05-28 20:22:29 +00:00
|
|
|
(defun asm/post-init-electric-indent-mode ()
|
|
|
|
(spacemacs/add-to-hooks 'asm-electric-indent-local-mode-off
|
|
|
|
'(asm-mode-hook nasm-mode-hook)))
|
|
|
|
|
2016-01-06 09:13:05 +00:00
|
|
|
(defun asm/init-nasm-mode ()
|
|
|
|
"Setup for built-in `nasm-mode', which could be thought as improved `asm-mode'"
|
|
|
|
(use-package nasm-mode
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(add-hook 'nasm-mode-hook #'asm-generic-setup)
|
2016-03-14 21:25:19 +00:00
|
|
|
(add-to-list 'auto-mode-alist '("\\.[n]*\\(asm\\|s\\)\\'" . nasm-mode))
|
2016-01-12 03:58:57 +00:00
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'nasm-mode "h" 'x86-lookup))
|
2016-01-06 09:13:05 +00:00
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
;; We need to insert a non-indented line, otherwise it's annoying
|
2019-12-05 12:24:12 +00:00
|
|
|
;; every time we insert a comment for a routine
|
2016-01-06 09:13:05 +00:00
|
|
|
(define-key nasm-mode-map (kbd "C-j") 'newline)
|
|
|
|
;; we use the advised `asm-colon' because `nasm-colon indents the whole line, even
|
|
|
|
;; inside a comment
|
|
|
|
(define-key nasm-mode-map (kbd ":") 'asm-colon))))
|
|
|
|
|
|
|
|
(defun asm/init-x86-lookup ()
|
|
|
|
(use-package x86-lookup
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
;; when a user installed `pdf-tools', use it for viewing PDF document.
|
|
|
|
(when (package-installed-p 'pdf-tools)
|
|
|
|
(setq x86-lookup-browse-pdf-function 'x86-lookup-browse-pdf-pdf-tools)))))
|
|
|
|
|
|
|
|
(defun asm/post-init-company ()
|
2017-01-02 05:39:04 +00:00
|
|
|
(spacemacs|add-company-backends :modes asm-mode nasm-mode))
|
2016-04-05 04:08:34 +00:00
|
|
|
|
|
|
|
(defun asm/post-init-ggtags ()
|
2016-08-15 19:24:44 +00:00
|
|
|
(add-hook 'asm-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
|
2016-04-05 04:08:34 +00:00
|
|
|
|
2017-08-26 21:18:09 +00:00
|
|
|
(defun asm/post-init-counsel-gtags ()
|
|
|
|
(spacemacs/counsel-gtags-define-keys-for-mode 'asm-mode))
|
|
|
|
|
2016-04-05 04:08:34 +00:00
|
|
|
(defun asm/post-init-helm-gtags ()
|
|
|
|
(spacemacs/helm-gtags-define-keys-for-mode 'asm-mode))
|