mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
Update i3, polybar, emacs, qtile, zsh & sctipts
This commit is contained in:
parent
8822c65b4f
commit
102aa36798
15 changed files with 152 additions and 140 deletions
|
|
@ -4,3 +4,14 @@
|
|||
(setq doom-theme 'doom-one)
|
||||
(setq org-directory "~/org/")
|
||||
(setq display-line-numbers-type t)
|
||||
|
||||
|
||||
(defun gk-markdown-preview-buffer ()
|
||||
(interactive)
|
||||
(let* ((buf-this (buffer-name (current-buffer)))
|
||||
(buf-html (get-buffer-create
|
||||
(format "*gk-md-html (%s)*" buf-this))))
|
||||
(markdown-other-window (buffer-name buf-html))
|
||||
(shr-render-buffer buf-html)
|
||||
(eww-mode)
|
||||
(kill-buffer buf-html)))
|
||||
|
|
|
|||
|
|
@ -1,3 +1,12 @@
|
|||
(custom-set-variables
|
||||
'(package-selected-packages '(zoutline)))
|
||||
(custom-set-faces)
|
||||
;; 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 '(markdown-mode zoutline)))
|
||||
(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.
|
||||
)
|
||||
|
|
|
|||
|
|
@ -23,16 +23,16 @@
|
|||
;;minimap ; show a map of the code on the side
|
||||
modeline ; snazzy, Atom-inspired modeline, plus API
|
||||
;;nav-flash ; blink cursor line after big motions
|
||||
;;neotree ; a project drawer, like NERDTree for vim
|
||||
neotree ; a project drawer, like NERDTree for vim
|
||||
ophints ; highlight the region an operation acts on
|
||||
(popup +defaults) ; tame sudden yet inevitable temporary windows
|
||||
tabs ; a tab bar for Emacs
|
||||
treemacs ; a project drawer, like neotree but cooler
|
||||
;;treemacs ; a project drawer, like neotree but cooler
|
||||
unicode ; extended unicode support for various languages
|
||||
vc-gutter ; vcs diff in the fringe
|
||||
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
||||
;;vc-gutter ; vcs diff in the fringe
|
||||
;;vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
||||
;;window-select ; visually switch windows
|
||||
workspaces ; tab emulation, persistence & separate workspaces
|
||||
;;workspaces ; tab emulation, persistence & separate workspaces
|
||||
;;zen ; distraction-free coding or writing
|
||||
|
||||
:editor
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
:emacs
|
||||
dired ; making dired pretty [functional]
|
||||
electric ; smarter, keyword-based electric-indent
|
||||
;;electric ; smarter, keyword-based electric-indent
|
||||
;;ibuffer ; interactive buffer management
|
||||
undo ; persistent, smarter undo for your inevitable mistakes
|
||||
vc ; version-control and Emacs, sitting in a tree
|
||||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
:checkers
|
||||
syntax ; tasing you for every semicolon you forget
|
||||
;;spell ; tasing you for misspelling mispelling
|
||||
spell ; tasing you for misspelling mispelling
|
||||
;;grammar ; tasing grammar mistake every you make
|
||||
|
||||
:tools
|
||||
|
|
@ -91,7 +91,7 @@
|
|||
|
||||
:os
|
||||
(:if IS-MAC macos) ; improve compatibility with macOS
|
||||
tty ; improve the terminal Emacs experience
|
||||
;;tty ; improve the terminal Emacs experience
|
||||
|
||||
:lang
|
||||
;;agda ; types of types of types of types...
|
||||
|
|
@ -150,7 +150,7 @@
|
|||
;;swift ; who asked for emoji variables?
|
||||
;;terra ; Earth and Moon in alignment for performance.
|
||||
;;web ; the tubes
|
||||
yaml ; JSON, but readable
|
||||
;;yaml ; JSON, but readable
|
||||
|
||||
:email
|
||||
;;(mu4e +gmail)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
(package! rainbow-mode)
|
||||
(package! async)
|
||||
(package! go-autocomplete)
|
||||
(package! markdown-mode)
|
||||
(package! hy-mode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue