Drop support for wpc-java
1. I don't use this. 2. This is breaking CI because google-java-format cannot be found.
This commit is contained in:
parent
9065c575aa
commit
76b1bcd59a
2 changed files with 0 additions and 43 deletions
|
@ -51,6 +51,5 @@
|
||||||
(require 'wpc-clojure)
|
(require 'wpc-clojure)
|
||||||
(require 'wpc-python)
|
(require 'wpc-python)
|
||||||
(require 'wpc-javascript)
|
(require 'wpc-javascript)
|
||||||
(require 'wpc-java)
|
|
||||||
(require 'wpc-prolog)
|
(require 'wpc-prolog)
|
||||||
(require 'wpc-golang)
|
(require 'wpc-golang)
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
;;; wpc-java.el --- Java configuration -*- lexical-binding: t -*-
|
|
||||||
;; Author: William Carroll <wpcarro@gmail.com>
|
|
||||||
|
|
||||||
;;; Commentary:
|
|
||||||
;; When life gets you down, and you find yourself writing Java, remember: at
|
|
||||||
;; least you're using Emacs.
|
|
||||||
|
|
||||||
;;; Code:
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
;; Dependencies
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
|
|
||||||
(require 'prelude)
|
|
||||||
(require 'macros)
|
|
||||||
|
|
||||||
(prelude/assert
|
|
||||||
(prelude/executable-exists? "google-java-format"))
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
;; Configuration
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
|
|
||||||
;; TODO: Troubleshoot why this isn't running.
|
|
||||||
(add-hook-before-save
|
|
||||||
'java-mode-hook
|
|
||||||
(lambda ()
|
|
||||||
(call-interactively
|
|
||||||
#'google-java-format)))
|
|
||||||
|
|
||||||
(add-hook 'java-mode-hook
|
|
||||||
(lambda ()
|
|
||||||
(setq c-basic-offset 2
|
|
||||||
tab-width 2)))
|
|
||||||
|
|
||||||
;; TODO: Figure out whether I should use this or google-emacs.
|
|
||||||
;; (use-package lsp-java
|
|
||||||
;; :config
|
|
||||||
;; (add-hook 'java-mode-hook #'lsp))
|
|
||||||
|
|
||||||
(provide 'wpc-java)
|
|
||||||
;;; wpc-java.el ends here
|
|
Loading…
Reference in a new issue