From b04dfdb8f5ad6d2efe6a675163278777db7731e5 Mon Sep 17 00:00:00 2001 From: William Ball Date: Wed, 18 Feb 2026 16:48:29 -0500 Subject: [PATCH] idk --- emacs/.config/emacs/Emacs.org | 40 ++++++++++--------- nvim/.config/nvim/lua/plugins/colors.lua | 40 +++++++++---------- .../nvim/lua/plugins/languages/perga.lua | 14 +++---- nvim/.config/nvim/lua/plugins/treesitter.lua | 15 ++++--- 4 files changed, 58 insertions(+), 51 deletions(-) diff --git a/emacs/.config/emacs/Emacs.org b/emacs/.config/emacs/Emacs.org index b49957d..88a26e9 100644 --- a/emacs/.config/emacs/Emacs.org +++ b/emacs/.config/emacs/Emacs.org @@ -14,7 +14,7 @@ (setq visible-bell t) (setq frame-resize-pixelwise t) (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) #+end_src ** Backups @@ -67,7 +67,7 @@ #+begin_src emacs-lisp (use-package nerd-icons :custom - (nerd-icons-font-family "AdwaitaMono Nerd Font")) + (nerd-icons-font-family "Iosevka Nerd Font")) #+end_src ** Rainbow delimiters #+begin_src emacs-lisp @@ -106,21 +106,25 @@ (which-key-mode) (setq which-key-idle-delay 0.3)) #+end_src +** Hide Modeline +#+begin_src emacs-lisp + (use-package hide-mode-line) +#+end_src ** Theme *** Modus Themes #+begin_src emacs-lisp - ;; (use-package emacs - ;; :ensure nil - ;; :config - ;; (require-theme 'modus-themes) - ;; (setq modus-themes-italic-constructs t - ;; modus-themes-bold-constructs t - ;; modus-themes-links '(no-underline background faint) - ;; modus-themes-prompts '(bold intense) - ;; modus-themes-mode-line '(borderless accented moody) - ;; modus-themes-org-blocks 'gray-background - ;; modus-themes-region '(bg-only no-extend)) - ;; (load-theme 'modus-operandi :no-confirm)) + (use-package emacs + :ensure nil + :config + (require-theme 'modus-themes) + (setq modus-themes-italic-constructs t + modus-themes-bold-constructs t + modus-themes-links '(no-underline background faint) + modus-themes-prompts '(bold intense) + modus-themes-mode-line '(borderless accented moody) + modus-themes-org-blocks 'gray-background + modus-themes-region '(bg-only no-extend)) + (load-theme 'modus-operandi :no-confirm)) #+end_src *** Autodark #+begin_src emacs-lisp @@ -132,10 +136,10 @@ #+end_src *** Catpuccin #+begin_src emacs-lisp - (use-package catppuccin-theme - :init (setq catppuccin-flavor 'mocha) - :config - (load-theme 'catppuccin :no-confirm)) + ;; (use-package catppuccin-theme + ;; :init (setq catppuccin-flavor 'mocha) + ;; :config + ;; (load-theme 'catppuccin :no-confirm)) #+end_src ** Ultra Scroll #+begin_src emacs-lisp diff --git a/nvim/.config/nvim/lua/plugins/colors.lua b/nvim/.config/nvim/lua/plugins/colors.lua index d468041..5afbf31 100644 --- a/nvim/.config/nvim/lua/plugins/colors.lua +++ b/nvim/.config/nvim/lua/plugins/colors.lua @@ -3,28 +3,28 @@ return { 'norcalli/nvim-colorizer.lua', 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", - -- lazy = false, + -- 'catppuccin/nvim', + -- name = 'catppuccin', -- 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') + -- require('catppuccin').setup({ + -- transparent_background = true, + -- }) + -- vim.cmd.colorscheme([[catppuccin-mocha]]) -- 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 + } } diff --git a/nvim/.config/nvim/lua/plugins/languages/perga.lua b/nvim/.config/nvim/lua/plugins/languages/perga.lua index 070c230..333f6cb 100644 --- a/nvim/.config/nvim/lua/plugins/languages/perga.lua +++ b/nvim/.config/nvim/lua/plugins/languages/perga.lua @@ -1,7 +1,7 @@ -return { - { - "https://forgejo.ballcloud.cc/wball/perga.nvim", - -- url = "/home/wball/repos/perga.nvim", - config = true, - }, -} +return {} +-- { +-- "https://forgejo.ballcloud.cc/wball/perga.nvim", +-- -- url = "/home/wball/repos/perga.nvim", +-- config = true, +-- }, +-- } diff --git a/nvim/.config/nvim/lua/plugins/treesitter.lua b/nvim/.config/nvim/lua/plugins/treesitter.lua index 6bb27d2..968257e 100644 --- a/nvim/.config/nvim/lua/plugins/treesitter.lua +++ b/nvim/.config/nvim/lua/plugins/treesitter.lua @@ -3,13 +3,16 @@ return { 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate', config = function() - local configs = require('nvim-treesitter.configs') - - configs.setup({ - ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'perga', 'bash', 'python'}, - highlight = { enable = true }, - indent = { enable = true } + require('nvim-treesitter').setup({ + ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'bash', 'python'}, }) + -- local configs = require('nvim-treesitter.configs') + + -- configs.setup({ + -- ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'bash', 'python'}, + -- highlight = { enable = true }, + -- indent = { enable = true } + -- }) end }, {