Merge branch 'main' into single-monitor

This commit is contained in:
Andrew Scott 2022-02-10 21:54:11 -05:00
commit 3947757872
Signed by: a
GPG key ID: 3EB62D0BBB8DB381
2 changed files with 9 additions and 5 deletions

View file

@ -246,9 +246,17 @@
(lsp-ui-doc-show))
(use-package dap-mode
:after lsp-mode
:commands dap-debug
:hook ((python-mode . dap-ui-mode)
(python-mode . dap-mode))
:config
(dap-ui-mode 1)
(dap-tooltip-mode 1))
(dap-tooltip-mode 1)
(eval-when-compile
(require 'cl-lib))
(require 'dap-python)
(require 'dap-lldb))
(use-package company
:config

View file

@ -1,4 +0,0 @@
# make Java behave when not using a DE
export _JAVA_AWT_WM_NONREPARENTING=1
# add .local/bin to $PATH
export PATH="$HOME/.local/bin:$PATH"