Compare commits
No commits in common. "858c2b086ead05eb9a11f382e6ab9af4d86f832e" and "e78d45d5bb1680bd46917d9d381324742683f9ed" have entirely different histories.
858c2b086e
...
e78d45d5bb
4 changed files with 16 additions and 25 deletions
|
|
@ -1,25 +1,13 @@
|
||||||
return {
|
return {
|
||||||
-- {
|
|
||||||
-- '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
|
||||||
}}
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ return {
|
||||||
local configs = require('nvim-treesitter.configs')
|
local configs = require('nvim-treesitter.configs')
|
||||||
|
|
||||||
configs.setup({
|
configs.setup({
|
||||||
ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'perga', 'bash', 'python'},
|
ensure_installed = 'all',
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true }
|
indent = { enable = true }
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -41,8 +41,11 @@ 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-syntax-highlighting/zsh-syntax-highlighting.zsh
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.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
|
# zoxide
|
||||||
eval "$(zoxide init zsh)"
|
eval "$(zoxide init zsh)"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue