Minor refactors; unbind F1 from company active map

This commit is contained in:
Henrik Lissner 2019-12-13 14:25:30 -05:00
parent 967390fe6c
commit 0ec0ff5ecb
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 6 additions and 4 deletions

View file

@ -141,7 +141,8 @@
"C-SPC" #'company-complete-common "C-SPC" #'company-complete-common
"TAB" #'company-complete-common-or-cycle "TAB" #'company-complete-common-or-cycle
[tab] #'company-complete-common-or-cycle [tab] #'company-complete-common-or-cycle
[backtab] #'company-select-previous) [backtab] #'company-select-previous
[f1] nil)
(:map company-search-map ; applies to `company-filter-map' too (:map company-search-map ; applies to `company-filter-map' too
"C-n" #'company-select-next-or-abort "C-n" #'company-select-next-or-abort
"C-p" #'company-select-previous-or-abort "C-p" #'company-select-previous-or-abort

View file

@ -3,9 +3,10 @@
(use-package! lsp-java (use-package! lsp-java
:after-call java-mode :after-call java-mode
:init (add-hook 'java-mode-local-vars-hook #'lsp!) :init
:config (add-hook 'java-mode-local-vars-hook #'lsp!)
(setq lsp-java-server-install-dir (concat doom-etc-dir "eclipse.jdt.ls/server/")) (setq lsp-java-server-install-dir (concat doom-etc-dir "eclipse.jdt.ls/server/"))
:config
;; TODO keybinds ;; TODO keybinds
;; TODO treemacs integration (?) ;; TODO treemacs integration (?)
) )

View file

@ -15,7 +15,7 @@
neo-mode-line-type 'none neo-mode-line-type 'none
neo-window-width 24 neo-window-width 24
neo-show-updir-line nil neo-show-updir-line nil
neo-theme 'nerd ; fallback neo-theme 'icons
neo-banner-message nil neo-banner-message nil
neo-confirm-create-file #'off-p neo-confirm-create-file #'off-p
neo-confirm-create-directory #'off-p neo-confirm-create-directory #'off-p