mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 02:50:24 +10:00
Compare commits
3 Commits
41eb882aef
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2a4a744c0 | ||
|
|
8a6fcac959 | ||
|
|
6d7c35a9ec |
@@ -161,6 +161,17 @@
|
|||||||
"centeringMode": "index",
|
"centeringMode": "index",
|
||||||
"clockDateFormat": "",
|
"clockDateFormat": "",
|
||||||
"lockDateFormat": "",
|
"lockDateFormat": "",
|
||||||
|
"greeterRememberLastSession": true,
|
||||||
|
"greeterRememberLastUser": true,
|
||||||
|
"greeterEnableFprint": false,
|
||||||
|
"greeterEnableU2f": false,
|
||||||
|
"greeterWallpaperPath": "",
|
||||||
|
"greeterUse24HourClock": true,
|
||||||
|
"greeterShowSeconds": false,
|
||||||
|
"greeterPadHours12Hour": false,
|
||||||
|
"greeterLockDateFormat": "",
|
||||||
|
"greeterFontFamily": "",
|
||||||
|
"greeterWallpaperFillMode": "",
|
||||||
"mediaSize": 1,
|
"mediaSize": 1,
|
||||||
"appLauncherViewMode": "grid",
|
"appLauncherViewMode": "grid",
|
||||||
"spotlightModalViewMode": "grid",
|
"spotlightModalViewMode": "grid",
|
||||||
@@ -273,6 +284,7 @@
|
|||||||
"matugenTemplateKcolorscheme": true,
|
"matugenTemplateKcolorscheme": true,
|
||||||
"matugenTemplateVscode": true,
|
"matugenTemplateVscode": true,
|
||||||
"matugenTemplateEmacs": true,
|
"matugenTemplateEmacs": true,
|
||||||
|
"matugenTemplateZed": true,
|
||||||
"showDock": false,
|
"showDock": false,
|
||||||
"dockAutoHide": false,
|
"dockAutoHide": false,
|
||||||
"dockSmartAutoHide": false,
|
"dockSmartAutoHide": false,
|
||||||
@@ -314,6 +326,8 @@
|
|||||||
"lockAtStartup": false,
|
"lockAtStartup": false,
|
||||||
"enableFprint": false,
|
"enableFprint": false,
|
||||||
"maxFprintTries": 15,
|
"maxFprintTries": 15,
|
||||||
|
"enableU2f": false,
|
||||||
|
"u2fMode": "or",
|
||||||
"lockScreenActiveMonitor": "all",
|
"lockScreenActiveMonitor": "all",
|
||||||
"lockScreenInactiveColor": "#000000",
|
"lockScreenInactiveColor": "#000000",
|
||||||
"lockScreenNotificationMode": 0,
|
"lockScreenNotificationMode": 0,
|
||||||
@@ -410,7 +424,8 @@
|
|||||||
"centerWidgets": [
|
"centerWidgets": [
|
||||||
{
|
{
|
||||||
"id": "music",
|
"id": "music",
|
||||||
"enabled": true
|
"enabled": true,
|
||||||
|
"mediaSize": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "clock",
|
"id": "clock",
|
||||||
|
|||||||
@@ -14,6 +14,13 @@
|
|||||||
|
|
||||||
(setq backup-directory-alist '((".*" . "~/.local/share/Trash/files")))
|
(setq backup-directory-alist '((".*" . "~/.local/share/Trash/files")))
|
||||||
|
|
||||||
|
(use-package claude-code
|
||||||
|
:ensure (claude-code :host github :repo "stevemolitor/claude-code.el")
|
||||||
|
:bind ("C-c c" . claude-code-transient)
|
||||||
|
:config
|
||||||
|
;; Optional: Start the Emacs server if not already running
|
||||||
|
(unless (server-running-p) (server-start)))
|
||||||
|
|
||||||
(use-package company
|
(use-package company
|
||||||
:defer 2
|
:defer 2
|
||||||
:diminish
|
:diminish
|
||||||
@@ -616,14 +623,14 @@
|
|||||||
|
|
||||||
(eval-after-load 'org-indent '(diminish 'org-indent-mode))
|
(eval-after-load 'org-indent '(diminish 'org-indent-mode))
|
||||||
|
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
'(org-level-1 ((t (:inherit outline-1 :height 1.7))))
|
'(org-level-1 ((t (:inherit outline-1 :height 1.7))))
|
||||||
'(org-level-2 ((t (:inherit outline-2 :height 1.6))))
|
'(org-level-2 ((t (:inherit outline-2 :height 1.6))))
|
||||||
'(org-level-3 ((t (:inherit outline-3 :height 1.5))))
|
'(org-level-3 ((t (:inherit outline-3 :height 1.5))))
|
||||||
'(org-level-4 ((t (:inherit outline-4 :height 1.4))))
|
'(org-level-4 ((t (:inherit outline-4 :height 1.4))))
|
||||||
'(org-level-5 ((t (:inherit outline-5 :height 1.3))))
|
'(org-level-5 ((t (:inherit outline-5 :height 1.3))))
|
||||||
'(org-level-6 ((t (:inherit outline-5 :height 1.2))))
|
'(org-level-6 ((t (:inherit outline-5 :height 1.2))))
|
||||||
'(org-level-7 ((t (:inherit outline-5 :height 1.1)))))
|
'(org-level-7 ((t (:inherit outline-5 :height 1.1)))))
|
||||||
|
|
||||||
(require 'org-tempo)
|
(require 'org-tempo)
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
- [[#sourcing-the-scripts][Sourcing the scripts]]
|
- [[#sourcing-the-scripts][Sourcing the scripts]]
|
||||||
- [[#all-the-icons][ALL THE ICONS]]
|
- [[#all-the-icons][ALL THE ICONS]]
|
||||||
- [[#backup][BACKUP]]
|
- [[#backup][BACKUP]]
|
||||||
|
- [[#claude-code][CLAUDE-CODE]]
|
||||||
- [[#company][COMPANY]]
|
- [[#company][COMPANY]]
|
||||||
- [[#dashboard][DASHBOARD]]
|
- [[#dashboard][DASHBOARD]]
|
||||||
- [[#diminish][DIMINISH]]
|
- [[#diminish][DIMINISH]]
|
||||||
@@ -98,6 +99,17 @@ By default, Emacs creates automatic backups of files in their original directori
|
|||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
* CLAUDE-CODE
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package claude-code
|
||||||
|
:ensure (claude-code :host github :repo "stevemolitor/claude-code.el")
|
||||||
|
:bind ("C-c c" . claude-code-transient)
|
||||||
|
:config
|
||||||
|
;; Optional: Start the Emacs server if not already running
|
||||||
|
(unless (server-running-p) (server-start)))
|
||||||
|
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* COMPANY
|
* COMPANY
|
||||||
[[https://company-mode.github.io/][Company]] is a text completion framework for Emacs. The name stands for "complete anything". Completion will start automatically after you type a few letters. Use M-n and M-p to select, <return> to complete or <tab> to complete the common part.
|
[[https://company-mode.github.io/][Company]] is a text completion framework for Emacs. The name stands for "complete anything". Completion will start automatically after you type a few letters. Use M-n and M-p to select, <return> to complete or <tab> to complete the common part.
|
||||||
|
|
||||||
@@ -117,6 +129,7 @@ By default, Emacs creates automatic backups of files in their original directori
|
|||||||
:after company
|
:after company
|
||||||
:diminish
|
:diminish
|
||||||
:hook (company-mode . company-box-mode))
|
:hook (company-mode . company-box-mode))
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
* DASHBOARD
|
* DASHBOARD
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
// ! DO NOT EDIT !
|
|
||||||
// ! AUTO-GENERATED BY DMS !
|
|
||||||
// ! CHANGES WILL BE OVERWRITTEN !
|
|
||||||
// ! PLACE YOUR CUSTOM CONFIGURATION ELSEWHERE !
|
|
||||||
|
|
||||||
cursor {
|
|
||||||
xcursor-theme "Bibata-Modern-Ice"
|
|
||||||
xcursor-size 24
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user