This commit is contained in:
William Ball 2026-02-18 16:48:29 -05:00
parent 2d140dc2d1
commit b04dfdb8f5
Signed by: wball
SSH key fingerprint: SHA256:3K3IvjUp1U5HwsIRYy/vosnG8l/A84LPUSAKQ6oCGKI
4 changed files with 58 additions and 51 deletions

View file

@ -14,7 +14,7 @@
(setq visible-bell t) (setq visible-bell t)
(setq frame-resize-pixelwise t) (setq frame-resize-pixelwise t)
(fset 'yes-or-no-p 'y-or-n-p) (fset 'yes-or-no-p 'y-or-n-p)
;(setq default-frame-alist '((undecorated . t))) (setq default-frame-alist '((undecorated . t)))
(scroll-bar-mode -1) (scroll-bar-mode -1)
#+end_src #+end_src
** Backups ** Backups
@ -67,7 +67,7 @@
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package nerd-icons (use-package nerd-icons
:custom :custom
(nerd-icons-font-family "AdwaitaMono Nerd Font")) (nerd-icons-font-family "Iosevka Nerd Font"))
#+end_src #+end_src
** Rainbow delimiters ** Rainbow delimiters
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -106,21 +106,25 @@
(which-key-mode) (which-key-mode)
(setq which-key-idle-delay 0.3)) (setq which-key-idle-delay 0.3))
#+end_src #+end_src
** Hide Modeline
#+begin_src emacs-lisp
(use-package hide-mode-line)
#+end_src
** Theme ** Theme
*** Modus Themes *** Modus Themes
#+begin_src emacs-lisp #+begin_src emacs-lisp
;; (use-package emacs (use-package emacs
;; :ensure nil :ensure nil
;; :config :config
;; (require-theme 'modus-themes) (require-theme 'modus-themes)
;; (setq modus-themes-italic-constructs t (setq modus-themes-italic-constructs t
;; modus-themes-bold-constructs t modus-themes-bold-constructs t
;; modus-themes-links '(no-underline background faint) modus-themes-links '(no-underline background faint)
;; modus-themes-prompts '(bold intense) modus-themes-prompts '(bold intense)
;; modus-themes-mode-line '(borderless accented moody) modus-themes-mode-line '(borderless accented moody)
;; modus-themes-org-blocks 'gray-background modus-themes-org-blocks 'gray-background
;; modus-themes-region '(bg-only no-extend)) modus-themes-region '(bg-only no-extend))
;; (load-theme 'modus-operandi :no-confirm)) (load-theme 'modus-operandi :no-confirm))
#+end_src #+end_src
*** Autodark *** Autodark
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -132,10 +136,10 @@
#+end_src #+end_src
*** Catpuccin *** Catpuccin
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package catppuccin-theme ;; (use-package catppuccin-theme
:init (setq catppuccin-flavor 'mocha) ;; :init (setq catppuccin-flavor 'mocha)
:config ;; :config
(load-theme 'catppuccin :no-confirm)) ;; (load-theme 'catppuccin :no-confirm))
#+end_src #+end_src
** Ultra Scroll ** Ultra Scroll
#+begin_src emacs-lisp #+begin_src emacs-lisp

View file

@ -3,28 +3,28 @@ return {
'norcalli/nvim-colorizer.lua', 'norcalli/nvim-colorizer.lua',
config = true config = true
}, },
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000,
config = function()
require('catppuccin').setup({
transparent_background = true,
})
vim.cmd.colorscheme([[catppuccin-mocha]])
end
},
-- { -- {
-- "Mofiqul/adwaita.nvim", -- 'catppuccin/nvim',
-- lazy = false, -- name = 'catppuccin',
-- priority = 1000, -- priority = 1000,
--
-- -- configure and set on startup
-- config = function() -- config = function()
-- vim.g.adwaita_darker = true -- for darker version -- require('catppuccin').setup({
-- -- vim.g.adwaita_disable_cursorline = true -- to disable cursorline -- transparent_background = true,
-- vim.g.adwaita_transparent = true -- makes the background transparent -- })
-- vim.cmd('colorscheme adwaita') -- vim.cmd.colorscheme([[catppuccin-mocha]])
-- end -- end
-- } -- },
{
"Mofiqul/adwaita.nvim",
lazy = false,
priority = 1000,
-- configure and set on startup
config = function()
vim.g.adwaita_darker = true -- for darker version
-- vim.g.adwaita_disable_cursorline = true -- to disable cursorline
vim.g.adwaita_transparent = true -- makes the background transparent
vim.cmd('colorscheme adwaita')
end
}
} }

View file

@ -1,7 +1,7 @@
return { return {}
{ -- {
"https://forgejo.ballcloud.cc/wball/perga.nvim", -- "https://forgejo.ballcloud.cc/wball/perga.nvim",
-- url = "/home/wball/repos/perga.nvim", -- -- url = "/home/wball/repos/perga.nvim",
config = true, -- config = true,
}, -- },
} -- }

View file

@ -3,13 +3,16 @@ return {
'nvim-treesitter/nvim-treesitter', 'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate', build = ':TSUpdate',
config = function() config = function()
local configs = require('nvim-treesitter.configs') require('nvim-treesitter').setup({
ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'bash', 'python'},
configs.setup({
ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'perga', 'bash', 'python'},
highlight = { enable = true },
indent = { enable = true }
}) })
-- local configs = require('nvim-treesitter.configs')
-- configs.setup({
-- ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'bash', 'python'},
-- highlight = { enable = true },
-- indent = { enable = true }
-- })
end end
}, },
{ {