This commit is contained in:
joachimschmidt557 2021-11-04 17:51:22 +01:00
parent 8730f5b655
commit 36b21df5ee
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
2 changed files with 6 additions and 28 deletions

View file

@ -62,18 +62,16 @@
(straight-use-package 'smartparens) (straight-use-package 'smartparens)
(straight-use-package 'rainbow-delimiters) (straight-use-package 'rainbow-delimiters)
(straight-use-package 'hl-todo) (straight-use-package 'hl-todo)
;; (straight-use-package 'counsel)
(straight-use-package 'orderless) (straight-use-package 'orderless)
(straight-use-package 'selectrum) (straight-use-package 'selectrum)
(straight-use-package 'consult) (straight-use-package 'consult)
(straight-use-package 'marginalia) (straight-use-package 'marginalia)
(straight-use-package 'company) (straight-use-package 'company)
;; (straight-use-package 'eglot)
(straight-use-package 'lsp-mode) (straight-use-package 'lsp-mode)
(straight-use-package 'speed-type) (straight-use-package 'speed-type)
(straight-use-package 'magit) (straight-use-package 'magit)
(straight-use-package 'restart-emacs) (straight-use-package 'restart-emacs)
(straight-use-package 'mingus) ;; (straight-use-package 'mingus)
(straight-use-package 'ace-window) (straight-use-package 'ace-window)
;; (straight-use-package 'projectile) ;; (straight-use-package 'projectile)
@ -110,6 +108,9 @@
;; (use-package promela-mode ;; (use-package promela-mode
;; :mode "\\.pml\\'") ;; :mode "\\.pml\\'")
(use-package gcmh
:delight)
(use-package undo-tree (use-package undo-tree
:config :config
(global-undo-tree-mode) (global-undo-tree-mode)
@ -142,17 +143,6 @@
(use-package hl-todo-mode (use-package hl-todo-mode
:hook prog-mode) :hook prog-mode)
;; (use-package ivy
;; :init
;; (ivy-mode 1)
;; ;; (setq ivy-use-virtual-buffers t)
;; (counsel-mode 1)
;; :bind (("C-c i" . counsel-imenu)
;; ("C-x M-r" . counsel-rg)
;; ("C-x M-f" . counsel-fzf)
;; ("C-x C-r" . counsel-recentf)
;; ("C-c C-r" . ivy-resume)))
(use-package orderless (use-package orderless
:custom (completion-styles '(orderless))) :custom (completion-styles '(orderless)))
@ -174,20 +164,6 @@
(global-company-mode) (global-company-mode)
:bind (("C-." . company-complete))) :bind (("C-." . company-complete)))
;; (use-package eglot
;; :commands (eglot)
;; :config
;; (add-to-list 'eglot-server-programs '(zig-mode . ("~/src/zls/zig-cache/bin/zls"))))
;; (use-package lsp
;; :config
;; (add-to-list 'lsp-language-id-configuration '(zig-mode . "zig"))
;; (lsp-register-client
;; (make-lsp-client
;; :new-connection (lsp-stdio-connection "~/src/zls/zig-out/bin/zls")
;; :major-modes '(zig-mode)
;; :server-id 'zls)))
(use-package ace-window (use-package ace-window
:config :config
(setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)) (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l))

View file

@ -10,4 +10,6 @@ pkgs.mkShell {
libxml2 libxml2
zlib zlib
]; ];
hardeningDisable = [ "all" ];
} }