George Xanthakis
George Xanthakis
@tecosaur The only thing that may impact the plugin is that I am using i3+Gnome as my DE, which I never had a problem with. Could something not be registered...
Try setting `(setenv "LSP_USE_PLISTS" "1")` in your init.el before lsp-mode is loaded. Found this in a [post](https://discourse.doomemacs.org/t/using-lsp-use-plists-with-rust-analyzer-stops-updating-diagnostics-on-save/2832/3) of doom emacs discourse.
I think you are missing a backslash in (warn " when it should be (warn "\\ Also did you run M-x list-packages before running package-install solarized-theme?
I have been trying to use magit-delta and I encountered the same problem. I am using doom-emacs with the magit module enabled and this problem is reproduced even with the...
If you use this ``` elisp (add-to-list 'aggressive-indent-dont-indent-if '(and (derived-mode-p 'c++-mode) (null (string-match "\\([;{}]\\|\\b\\(if\\|for\\|while\\)\\b\\)" (thing-at-point 'line))))) ``` Does it still happen?
It works fine for me. Are you sure that the problem is not something else?
What emacs version are you running ?Also can you check if company is activated before or after aggressive-indent ?
Instead of ```elisp (global-aggressive-indent-mode) ``` can you try hooking up aggressive-indent-mode on c-mode-hook and c++-mode-hook?
OK at least we improved something, another concern i have is that Maskray has configured ccls in wiki using 3 different hooks from you. ``` elisp :hook ((c-mode c++-mode objc-mode)...
I am not sure but c-mode and c-mode-hook are not the same. The equivalent to what i said is. ``` elisp (add-hook 'c-mode '(lambda () (require 'ccls) (lsp))) (add-hook 'c++-mode...