67 lines
2.0 KiB
EmacsLisp
67 lines
2.0 KiB
EmacsLisp
|
|
(require 'package)
|
||
|
|
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
|
||
|
|
(package-initialize)
|
||
|
|
|
||
|
|
;; Optional: Refresh the package list automatically if it's empty
|
||
|
|
(unless package-archive-contents
|
||
|
|
(package-refresh-contents))
|
||
|
|
|
||
|
|
(unless (package-installed-p 'multiple-cursors)
|
||
|
|
(package-refresh-contents)
|
||
|
|
(package-install 'multiple-cursors))
|
||
|
|
|
||
|
|
(require 'multiple-cursors)
|
||
|
|
;; (global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines)
|
||
|
|
|
||
|
|
(global-set-key (kbd "<f2>") 'mc/mark-next-like-this)
|
||
|
|
(global-set-key (kbd "S-<f2>") 'mc/mark-previous-like-this)
|
||
|
|
(global-set-key (kbd "C-<f2>") 'mc/mark-all-like-this)
|
||
|
|
|
||
|
|
(global-display-line-numbers-mode)
|
||
|
|
(setq backup-directory-alist `(("." . "~/emacs/autosaves/")))
|
||
|
|
(setq auto-save-file-name-transforms '((".*" "~/emacs/autosaves/\\1" t)))
|
||
|
|
|
||
|
|
(load-theme 'gruber-darker t)
|
||
|
|
(menu-bar-mode -1)
|
||
|
|
|
||
|
|
;; Disable the tool bar (the row of icons at the top)
|
||
|
|
(tool-bar-mode -1)
|
||
|
|
|
||
|
|
;; Disable the scroll bar (the vertical bar on the side)
|
||
|
|
(scroll-bar-mode -1)
|
||
|
|
|
||
|
|
(set-face-attribute 'default nil :height 170)
|
||
|
|
|
||
|
|
(setq project-vc-extra-root-markers '("CMakeLists.txt" "Makefile" "package.json" ".root"))
|
||
|
|
|
||
|
|
(use-package company
|
||
|
|
:ensure t
|
||
|
|
:init (global-company-mode)
|
||
|
|
:config
|
||
|
|
(setq company-idle-delay 0.0 ; How long to wait before popup (0 = instant)
|
||
|
|
company-minimum-prefix-length 1)) ; Show list after typing 1 character
|
||
|
|
|
||
|
|
(use-package lsp-mode
|
||
|
|
:ensure t
|
||
|
|
:init
|
||
|
|
:hook ((c-mode . lsp)
|
||
|
|
(c++-mode . lsp))
|
||
|
|
:commands lsp)
|
||
|
|
|
||
|
|
(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.
|
||
|
|
'(package-selected-packages
|
||
|
|
'(company gruber-darker-theme lsp-mode lsp-ui magit multiple-cursors
|
||
|
|
rust-mode)))
|
||
|
|
(custom-set-faces
|
||
|
|
;; custom-set-faces 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.
|
||
|
|
)
|
||
|
|
|
||
|
|
|