dotfiles-emacs/.config/emacs/config/c.el
finga 7df5b0e507 Move config files to XDG-compatible path
Move config files to XDG-compatible path: `$HOME/.config/emacs`.
2025-03-10 17:45:24 +01:00

8 lines
167 B
EmacsLisp

;; set c style to linux and indention to 2
(setq c-default-style "linux"
c-basic-offset 2)
(use-package lsp-mode
:ensure t
:hook
(c-mode . lsp-deferred))