refactor(emacs): remove emacs from tracking

This commit is contained in:
Price Hiller 2023-07-31 07:28:26 -05:00
parent 0aa0648cb7
commit 6fa9a437f9
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
12 changed files with 0 additions and 162 deletions

View File

@ -14,7 +14,6 @@
!wezterm
!wofi
!kitty
!emacs
!alacritty
!git
!gtk-3.0

View File

@ -1,5 +0,0 @@
auto-save-list
eln-cache
elpa
transient
init.el~

View File

@ -1,21 +0,0 @@
(setq inhibit-startup-message t)
(scroll-bar-mode -1) ; Disable visible scrollbar
(tool-bar-mode -1) ; Disable the toolbar
(tooltip-mode -1) ; Disable tooltips
(set-fringe-mode 10) ; Give some breathing room
(menu-bar-mode -1) ; Disable the menu bar
(set-face-attribute 'default nil :font "JetBrains Mono" :height 100)
(load-theme 'wombat)
;; Make ESC quit prompts
(global-set-key (kbd "<escape>") 'keyboard-escape-quit)
;; Set line numbers
(column-number-mode)
(global-display-line-numbers-mode t)
(provide 'init-settings)

View File

@ -1,24 +0,0 @@
(setq inhibit-startup-message t)
(scroll-bar-mode -1) ; Disable visible scrollbar
(tool-bar-mode -1) ; Disable the toolbar
(tooltip-mode -1) ; Disable tooltips
(set-fringe-mode 10) ; Give some breathing room
(menu-bar-mode -1) ; Disable the menu bar
;; Set up the visible bell
(setq visible-bell t)
(set-face-attribute 'default nil :font "JetBrains Mono" :height 100)
(load-theme 'wombat)
;; Make ESC quit prompts
(global-set-key (kbd "<escape>") 'keyboard-escape-quit)
;; Set line numbers
(column-number-mode)
(global-display-line-numbers-mode t)
(provide 'init-settings)

View File

@ -1,6 +0,0 @@
(use-package doom-modeline
:ensure t
:init (doom-modeline-mode 1)
:custom ((doom-modeline-height 15)))
(provide 'init-doom-modeline)

View File

@ -1,15 +0,0 @@
(use-package evil
:ensure t
:init
(setq evil-want-integration t) ;; This is optional since it's already set to t by default.
(setq evil-want-keybinding nil)
:config
(evil-mode 1))
(use-package evil-collection
:after evil
:ensure t
:config
(evil-collection-init))
(provide 'init-evil)

View File

@ -1,30 +0,0 @@
(use-package ivy
:diminish
:init
(ivy-mode 1))
(use-package all-the-icons-ivy-rich
:ensure t
:init (all-the-icons-ivy-rich-mode 1)
:config
(setq all-the-icons-rich-icon t)
(setq all-the-icons-ivy-rich-color-icon t))
(use-package ivy-rich
:ensure t
:init
(ivy-rich-mode 1))
(use-package all-the-icons-completion
:init
(all-the-icons-completion-mode 1))
(all-the-icons-completion-mode)
(use-package swiper
:config
(general-define-key
:states 'normal
"/" 'swiper))
;
(provide 'init-ivy)

View File

@ -1,4 +0,0 @@
(use-package rainbow-delimiters
:hook (prog-mode . rainbow-delimiters-mode))
(provide 'init-rainbow-delimiters)

View File

@ -1,7 +0,0 @@
(use-package which-key
:init (which-key-mode 1)
:diminish which-key-mode
:config
(setq which-key-idle-delay 0.3))
(provide 'init-whichkey)

View File

@ -1,31 +0,0 @@
(add-to-list 'load-path "~/.config/emacs/config/plugins/config/")
(require 'package)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")
("elpa" . "https://elpa.gnu.org/packages/")))
(package-initialize)
(unless package-archive-contents
(package-refresh-contents))
;; Initialize use-package on non-Linux platforms
(unless (package-installed-p 'use-package)
(package-install 'use-package))
(require 'use-package)
(setq use-package-always-ensure t)
; Keep near top, after use-package
(use-package general)
(require 'general)
(require 'init-evil)
(require 'init-doom-modeline)
(require 'init-ivy)
(require 'init-whichkey)
(require 'init-rainbow-delimiters)
; Keep these at bottom
(provide 'init-plugins)

View File

@ -1,18 +0,0 @@
(add-to-list 'load-path "~/.config/emacs/config/")
(add-to-list 'load-path "~/.config/emacs/config/plugins/")
(require 'init-settings)
(require 'init-plugins)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages '(ivy doom-modeline use-package)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)