Compare commits

..

3 commits

4 changed files with 25 additions and 16 deletions

View file

@ -1,13 +1,25 @@
return { return {
-- {
-- 'catppuccin/nvim',
-- name = 'catppuccin',
-- priority = 1000,
-- config = function()
-- require('catppuccin').setup({
-- transparent_background = true,
-- })
-- vim.cmd.colorscheme([[catppuccin-mocha]])
-- end
-- }
{ {
'catppuccin/nvim', "Mofiqul/adwaita.nvim",
name = 'catppuccin', lazy = false,
priority = 1000, priority = 1000,
-- configure and set on startup
config = function() config = function()
require('catppuccin').setup({ -- vim.g.adwaita_darker = true -- for darker version
transparent_background = true, -- vim.g.adwaita_disable_cursorline = true -- to disable cursorline
}) vim.g.adwaita_transparent = true -- makes the background transparent
vim.cmd.colorscheme([[catppuccin-mocha]]) vim.cmd('colorscheme adwaita')
end 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

@ -6,7 +6,7 @@ return {
local configs = require('nvim-treesitter.configs') local configs = require('nvim-treesitter.configs')
configs.setup({ configs.setup({
ensure_installed = 'all', ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'perga', 'bash', 'python'},
highlight = { enable = true }, highlight = { enable = true },
indent = { enable = true } indent = { enable = true }
}) })

View file

@ -41,11 +41,8 @@ zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
# plugins # plugins
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
# setup ocaml stuff
[[ ! -r '/home/wball/.local/share/opam/opam-init/init.zsh' ]] || source '/home/wball/.local/share/opam/opam-init/init.zsh' > /dev/null 2> /dev/null
# zoxide # zoxide
eval "$(zoxide init zsh)" eval "$(zoxide init zsh)"