mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
50 lines
1.4 KiB
EmacsLisp
50 lines
1.4 KiB
EmacsLisp
;; init-c.el --- Initialize c configurations. -*- lexical-binding: t -*-
|
|
|
|
;; Copyright (C) 2006-2022 Vincent Zhang
|
|
|
|
;; Author: Vincent Zhang <seagle0128@gmail.com>
|
|
;; URL: https://github.com/seagle0128/.emacs.d
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;; This program is free software; you can redistribute it and/or
|
|
;; modify it under the terms of the GNU General Public License as
|
|
;; published by the Free Software Foundation; either version 3, or
|
|
;; (at your option) any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
;; General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program; see the file COPYING. If not, write to
|
|
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
;; Floor, Boston, MA 02110-1301, USA.
|
|
;;
|
|
|
|
;;; Commentary:
|
|
;;
|
|
;; C/C++ configuration.
|
|
;;
|
|
|
|
;;; Code:
|
|
|
|
(require 'init-funcs)
|
|
|
|
;; C/C++ Mode
|
|
(use-package cc-mode
|
|
:ensure nil
|
|
:bind (:map c-mode-base-map
|
|
("<f12>" . compile))
|
|
:init (setq-default c-basic-offset 4))
|
|
|
|
;; (use-package c-ts-mode
|
|
;; :ensure nil
|
|
;; :init (setq c-ts-mode-indent-offset 4))
|
|
|
|
(provide 'init-c)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; init-c.el ends here
|