Skip to content

Commit

Permalink
Minor refactors; unbind F1 from company active map
Browse files Browse the repository at this point in the history
  • Loading branch information
hlissner committed Dec 13, 2019
1 parent 967390f commit 0ec0ff5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion modules/config/default/+evil-bindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@
"C-SPC" #'company-complete-common
"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
"C-n" #'company-select-next-or-abort
"C-p" #'company-select-previous-or-abort
Expand Down
5 changes: 3 additions & 2 deletions modules/lang/java/+lsp.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@

(use-package! lsp-java
:after-call java-mode
:init (add-hook 'java-mode-local-vars-hook #'lsp!)
:config
:init
(add-hook 'java-mode-local-vars-hook #'lsp!)
(setq lsp-java-server-install-dir (concat doom-etc-dir "eclipse.jdt.ls/server/"))
:config
;; TODO keybinds
;; TODO treemacs integration (?)
)
2 changes: 1 addition & 1 deletion modules/ui/neotree/config.el
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
neo-mode-line-type 'none
neo-window-width 24
neo-show-updir-line nil
neo-theme 'nerd ; fallback
neo-theme 'icons
neo-banner-message nil
neo-confirm-create-file #'off-p
neo-confirm-create-directory #'off-p
Expand Down

0 comments on commit 0ec0ff5

Please sign in to comment.