Shit for C
This commit is contained in:
parent
e0f721426a
commit
21a8626525
1 changed files with 27 additions and 17 deletions
26
config.org
26
config.org
|
@ -84,7 +84,7 @@ init to install the fonts.
|
||||||
(use-package markdown-mode
|
(use-package markdown-mode
|
||||||
:defer 1
|
:defer 1
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(add-hook 'markdown-mode-hook 'auto-fill-mode)
|
:init(add-hook 'markdown-mode-hook 'auto-fill-mode))
|
||||||
(use-package all-the-icons
|
(use-package all-the-icons
|
||||||
:defer 1
|
:defer 1
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
@ -141,7 +141,6 @@ The basic emacs persdonalization lol
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
(set-frame-font "Terminus 14" 12 t)
|
|
||||||
(global-hl-line-mode)
|
(global-hl-line-mode)
|
||||||
(set-face-background hl-line-face "gray13")
|
(set-face-background hl-line-face "gray13")
|
||||||
(setq-default cursor-type 'box)
|
(setq-default cursor-type 'box)
|
||||||
|
@ -150,6 +149,8 @@ The basic emacs persdonalization lol
|
||||||
(defalias 'yes-or-no-p 'y-or-n-p)
|
(defalias 'yes-or-no-p 'y-or-n-p)
|
||||||
;; Are you experienced?
|
;; Are you experienced?
|
||||||
(set-cursor-color "purple")
|
(set-cursor-color "purple")
|
||||||
|
(set-face-background 'line-number "gray3")
|
||||||
|
(set-face-background 'line-number-current-line "gray13")
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Highlight matching parentheses
|
** Highlight matching parentheses
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -203,6 +204,9 @@ It should use your default shell by default.
|
||||||
(use-package alect-themes
|
(use-package alect-themes
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(load-theme 'alect-black t))
|
:init(load-theme 'alect-black t))
|
||||||
|
(set-face-attribute 'default nil :font "Terminus 14" )
|
||||||
|
(set-frame-font "Terminus 14")
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
** ctrlf
|
** ctrlf
|
||||||
So, you know, C-s in emacs sucks, so this is a repleacement for that.
|
So, you know, C-s in emacs sucks, so this is a repleacement for that.
|
||||||
|
@ -276,7 +280,10 @@ to.
|
||||||
:init
|
:init
|
||||||
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
|
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
|
||||||
(setq c-default-style "k&r")
|
(setq c-default-style "k&r")
|
||||||
(add-hook 'c-mode-hook 'lsp-mode)
|
(add-hook 'c-mode-hook '(lambda ()
|
||||||
|
(lsp 1)
|
||||||
|
(flycheck-select-checker 'c/c++-clang)))
|
||||||
|
(setq c-mode-hook nil)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Raku
|
*** Raku
|
||||||
Raku, the cornerstone of any well designed programming language.
|
Raku, the cornerstone of any well designed programming language.
|
||||||
|
@ -322,7 +329,7 @@ Now for indent shit, so it matches the tabsize
|
||||||
;; Syntax highlighting in exports
|
;; Syntax highlighting in exports
|
||||||
(use-package htmlize
|
(use-package htmlize
|
||||||
:ensure t)
|
:ensure t)
|
||||||
#+end_src
|
#+end_src
|
||||||
**** Org-agenda
|
**** Org-agenda
|
||||||
>Le attention deficit destroyer
|
>Le attention deficit destroyer
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -406,10 +413,9 @@ Scroll by lines rather than by pages.
|
||||||
(setq scroll-step 1)
|
(setq scroll-step 1)
|
||||||
(setq scroll-conservatively 10000)
|
(setq scroll-conservatively 10000)
|
||||||
(setq auto-window-vscroll nil)
|
(setq auto-window-vscroll nil)
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode 1)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Sidebar
|
** Sidebar
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package dired-sidebar
|
(use-package dired-sidebar
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -474,7 +480,8 @@ And same but jumping between frames
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package expand-region
|
(use-package expand-region
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind ("C-c C-e" . 'er/expand-region))
|
:init(global-unset-key (kbd "C-c C-q"))
|
||||||
|
(global-set-key (kbd"C-c C-q") 'er/expand-region))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Beacon mode
|
** Beacon mode
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -513,6 +520,7 @@ buffer and don't want a whole interface for just pressing enter.
|
||||||
I am tired of =M-x auto-fill-mode= in some modes
|
I am tired of =M-x auto-fill-mode= in some modes
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(add-hook 'org-mode-hook 'auto-fill-mode)
|
(add-hook 'org-mode-hook 'auto-fill-mode)
|
||||||
|
(add-hook 'text-mode-hook 'auto-fill-mode)
|
||||||
(add-hook 'sgml-mode-hook 'auto-fill-mode)
|
(add-hook 'sgml-mode-hook 'auto-fill-mode)
|
||||||
(add-hook 'sgml-mode-hook 'zencoding-mode)
|
(add-hook 'sgml-mode-hook 'zencoding-mode)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
@ -539,6 +547,7 @@ thankfully there's this thing.
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
(add-hook 'org-mode-hook 'org-bullets-mode))
|
(add-hook 'org-mode-hook 'org-bullets-mode))
|
||||||
|
(local-unset-key (kbd"C-c C-q"))
|
||||||
#+end_src
|
#+end_src
|
||||||
** diff-hl
|
** diff-hl
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -608,7 +617,7 @@ This thing add sane shortcuts for emacs
|
||||||
:bind("C-c o" . 'crux-open-with)
|
:bind("C-c o" . 'crux-open-with)
|
||||||
:bind("C-c D" . 'crux-delete-buffer-and-file)
|
:bind("C-c D" . 'crux-delete-buffer-and-file)
|
||||||
:bind("C-x C-r" . 'crux-reopen-as-root)
|
:bind("C-x C-r" . 'crux-reopen-as-root)
|
||||||
:bind("C-c d" . 'crux-duplicate-current-line-or-region)
|
:bind("C-x C-d" . 'crux-duplicate-current-line-or-region)
|
||||||
:bind("C-c u" . 'crux-view-url)
|
:bind("C-c u" . 'crux-view-url)
|
||||||
:bind("C-c s" . 'crux-create-scratch-buffer))
|
:bind("C-c s" . 'crux-create-scratch-buffer))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
@ -643,3 +652,4 @@ own logo instead of Lain.
|
||||||
:init (doom-modeline-mode 1))
|
:init (doom-modeline-mode 1))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue