Compare commits

..

No commits in common. "858c2b086ead05eb9a11f382e6ab9af4d86f832e" and "e78d45d5bb1680bd46917d9d381324742683f9ed" have entirely different histories.

4 changed files with 16 additions and 25 deletions

View file

@ -1,25 +1,13 @@
return {
-- {
-- '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
}}
}
}

View file

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

View file

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

View file

@ -41,8 +41,11 @@ zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
# plugins
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/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
eval "$(zoxide init zsh)"