diff --git a/doom.d/config.el b/doom.d/config.el index 7dc99a1..f4e7453 100644 --- a/doom.d/config.el +++ b/doom.d/config.el @@ -76,3 +76,7 @@ ;; they are implemented. (setq doom-font "Victor Mono NerdFont") + +(setq-default indent-tabs-mode t) + +(map! :map c-mode-map :i "" #'indent-for-tab-command) diff --git a/home.nix b/home.nix index cda1513..c2295ce 100644 --- a/home.nix +++ b/home.nix @@ -209,5 +209,6 @@ in { programs.doom-emacs = { enable = true; doomDir = ./doom.d; + extraBinPackages = with pkgs; [ccls]; }; }