This commit is contained in:
Alexander Bantyev 2021-05-08 01:22:06 +03:00
parent a2ae704841
commit 6052883ac5
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
3 changed files with 11 additions and 55 deletions

View File

@ -1,36 +0,0 @@
diff -ur a/company-tabnine.el b/company-tabnine.el
--- a/company-tabnine.el 1970-01-01 03:00:01.000000000 +0300
+++ b/company-tabnine.el 2021-04-22 14:34:13.329024811 +0300
@@ -376,7 +376,7 @@
:sentinel #'company-tabnine--process-sentinel
:noquery t)))
;; hook setup
- (message "TabNine server started.")
+ ;; (message "TabNine server started.")
(dolist (hook company-tabnine--hooks-alist)
(add-hook (car hook) (cdr hook))))
@@ -475,17 +475,17 @@
(when (and company-tabnine--process
(memq (process-status process) '(exit signal)))
- (message "TabNine process %s received event %s."
- (prin1-to-string process)
- (prin1-to-string event))
+ ;; (message "TabNine process %s received event %s."
+ ;; (prin1-to-string process)
+ ;; (prin1-to-string event))
(if (>= company-tabnine--restart-count
company-tabnine-max-restart-count)
(progn
- (message "TabNine process restart limit reached.")
+ ;; (message "TabNine process restart limit reached.")
(setq company-tabnine--process nil))
- (message "Restarting TabNine process.")
+ ;; (message "Restarting TabNine process.")
(company-tabnine-start-process)
(setq company-tabnine--restart-count
(1+ company-tabnine--restart-count)))))

View File

@ -24,7 +24,6 @@ in {
use-package use-package
nix-mode nix-mode
haskell-mode haskell-mode
wakib-keys
exec-path-from-shell exec-path-from-shell
counsel counsel
projectile projectile
@ -39,11 +38,7 @@ in {
flycheck flycheck
flycheck-pkg-config flycheck-pkg-config
auto-indent-mode auto-indent-mode
clipmon
org-gcal
company-ghci company-ghci
(company-tabnine.overrideAttrs
(_: { patches = [ ./company-tabnine.patch ]; }))
expand-region expand-region
ivy ivy
smex smex
@ -62,14 +57,15 @@ in {
gitlab gitlab
undo-tree undo-tree
rust-mode rust-mode
go-mode
edit-indirect edit-indirect
idris-mode idris-mode
lsp-mode lsp-mode
org-caldav
envrc envrc
lsp-haskell lsp-haskell
crdt treemacs
lsp-treemacs
treemacs-projectile
dap-mode
]; ];
}; };

View File

@ -160,9 +160,6 @@ If point was already at that position, move point to beginning of line."
(use-package company-box (use-package company-box
:hook (company-mode . company-box-mode)) :hook (company-mode . company-box-mode))
(use-package company-tabnine
:config
(push 'company-tabnine company-backends))
;; ------------------- ;; -------------------
;; Ivy ;; Ivy
@ -227,20 +224,19 @@ If point was already at that position, move point to beginning of line."
(add-hook 'haskell-mode-hook 'lsp) (add-hook 'haskell-mode-hook 'lsp)
(add-hook 'haskell-literate-mode-hook 'lsp) (add-hook 'haskell-literate-mode-hook 'lsp)
) )
(use-package org-caldav
:config
(setq org-caldav-url "https://nextcloud.balsoft.ru/remote.php/dav/calendars/balsoft")
(setq org-caldav-calendar-id "work")
(setq org-caldav-inbox "/home/balsoft/Documents/Work/calendar.org")
(setq org-icalendar-timezone "Europe/Moscow")
)
(use-package envrc (use-package envrc
:config :config
(envrc-global-mode) (envrc-global-mode)
(advice-add 'lsp :before (lambda (&optional n) (envrc--update)))) (advice-add 'lsp :before (lambda (&optional n) (envrc--update))))
(use-package crdt) (setq treemacs-position 'right)
(use-package treemacs)
(use-package lsp-treemacs)
(use-package treemacs-projectile)
(load-theme 'manoj-dark t) (load-theme 'manoj-dark t)
;;; init.el ends here ;;; init.el ends here