VL
(use-package python-mode
:defer t
:init
(add-hook 'python-mode-hook
(lambda ()
(setq indent-tabs-mode t)
(setq tab-width 4)
(setq python-indent-offset 4)))
)
Size: a a a
VL
(use-package python-mode
:defer t
:init
(add-hook 'python-mode-hook
(lambda ()
(setq indent-tabs-mode t)
(setq tab-width 4)
(setq python-indent-offset 4)))
)
VL
D
VL
A
(use-package python-mode
:defer t
:init
(add-hook 'python-mode-hook
(lambda ()
(setq indent-tabs-mode t)
(setq tab-width 4)
(setq python-indent-offset 4)))
)
D
D
VL
VL
D
VL
VL
A
(use-package lsp-ui
:hook (lsp-mode . lsp-ui-mode)
:custom
(lsp-ui-doc-position 'bottom)
(global-set-key (kbd "C-c c d") 'lsp-ui-doc-focus-frame))
VL
(use-package lsp-ui
:hook (lsp-mode . lsp-ui-mode)
:custom
(lsp-ui-doc-position 'bottom)
(global-set-key (kbd "C-c c d") 'lsp-ui-doc-focus-frame))
A
VL
A
VL
:bind (:map mode-specific-map ("c d" . lsp-ui-doc-focus-frame))
VL