mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
Minor fix
This commit is contained in:
parent
9748e4c828
commit
59cd198cfc
6 changed files with 102 additions and 39 deletions
2
tools/doom/.gitignore
vendored
2
tools/doom/.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
|||
org-pomo-music.el
|
||||
.custom.el
|
||||
local.el
|
||||
themes/
|
||||
|
|
|
|||
|
|
@ -48,7 +48,9 @@
|
|||
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||
;; `load-theme' function. This is the default:
|
||||
(setq doom-theme 'doom-one)
|
||||
(setq doom-theme 'catppuccin)
|
||||
(setq catppuccin-flavor 'mocha)
|
||||
;(catppuccin-reload)
|
||||
|
||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||
|
|
@ -122,5 +124,7 @@
|
|||
|
||||
(load! "calendar.el")
|
||||
|
||||
(when (file-exists-p (expand-file-name "local.el" doom-user-dir))
|
||||
(load! "local.el"))
|
||||
|
||||
(load! "telega.el")
|
||||
;; (load! "telega.el")
|
||||
|
|
|
|||
|
|
@ -59,3 +59,5 @@
|
|||
(package! telega :recipe (:files (:defaults "contrib/*.el" "etc" "server" "Makefile")))
|
||||
|
||||
(package! org-super-agenda)
|
||||
|
||||
(package! catppuccin-theme)
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
(setq telega-directory (expand-file-name "~/.local/share/telega"))
|
||||
|
||||
|
||||
(prefix-key global-map (kbd "C-c t") telega-prefix-map)
|
||||
;; (prefix-key global-map (kbd "C-c t") telega-prefix-map)
|
||||
(unless (display-graphic-p) (setq telega-use-images nil))
|
||||
(when (modulep! :editor evil)
|
||||
(cl-pushnew 'telega +evil-collection-disabled-list :test #'equal)
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ return {
|
|||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
opts = {
|
||||
floavor = "auto",
|
||||
flavor = "auto",
|
||||
background = {
|
||||
light = "latte",
|
||||
dark = "mocha",
|
||||
|
|
@ -14,7 +14,13 @@ return {
|
|||
},
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"rose-pine/neovim",
|
||||
name = "rose-pine",
|
||||
opts = {
|
||||
variant = "dawn",
|
||||
},
|
||||
},
|
||||
{ "olimorris/onedarkpro.nvim" },
|
||||
{ "rebelot/kanagawa.nvim" },
|
||||
-- Highlight objects under the cursor
|
||||
|
|
@ -85,4 +91,19 @@ return {
|
|||
opts = {},
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
},
|
||||
{
|
||||
"folke/noice.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
-- add any options here
|
||||
},
|
||||
dependencies = {
|
||||
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
|
||||
"MunifTanjim/nui.nvim",
|
||||
-- OPTIONAL:
|
||||
-- `nvim-notify` is only needed, if you want to use the notification view.
|
||||
-- If not available, we use `mini` as the fallback
|
||||
"rcarriga/nvim-notify",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue