idk
This commit is contained in:
parent
2d140dc2d1
commit
b04dfdb8f5
4 changed files with 58 additions and 51 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
-- },
|
||||
-- }
|
||||
|
|
|
|||
|
|
@ -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
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue