mirror of
https://github.com/mentos1386/dotfiles.git
synced 2025-02-20 08:13:36 +00:00
feat(nvim): kawaii
This commit is contained in:
parent
457b6fa056
commit
d636fdebc0
3 changed files with 15 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
g!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
source common.sh
|
source common.sh
|
||||||
|
@ -18,4 +18,4 @@ brew install --cask --adopt \
|
||||||
bitwarden \
|
bitwarden \
|
||||||
obsidian \
|
obsidian \
|
||||||
thunderbird \
|
thunderbird \
|
||||||
visual-studio-code
|
visual-studio-code
|
||||||
|
|
|
@ -46,7 +46,10 @@ Plug("onsails/lspkind.nvim")
|
||||||
Plug("folke/trouble.nvim")
|
Plug("folke/trouble.nvim")
|
||||||
Plug("hrsh7th/vim-vsnip")
|
Plug("hrsh7th/vim-vsnip")
|
||||||
Plug("hrsh7th/vim-vsnip-integ")
|
Plug("hrsh7th/vim-vsnip-integ")
|
||||||
|
-- Kawaii
|
||||||
|
Plug("giusgad/pets.nvim")
|
||||||
|
Plug("giusgad/hologram.nvim")
|
||||||
|
Plug("MunifTanjim/nui.nvim")
|
||||||
vim.call("plug#end")
|
vim.call("plug#end")
|
||||||
|
|
||||||
-- TMUX/Clipboard fixes
|
-- TMUX/Clipboard fixes
|
||||||
|
@ -105,6 +108,7 @@ vim.opt.hidden = true
|
||||||
-- Custom configurations
|
-- Custom configurations
|
||||||
require("code_helpers")
|
require("code_helpers")
|
||||||
require("code_look")
|
require("code_look")
|
||||||
|
require("kawaii")
|
||||||
|
|
||||||
-- Fidget
|
-- Fidget
|
||||||
require("fidget").setup({
|
require("fidget").setup({
|
||||||
|
|
8
nvim/lua/kawaii.lua
Normal file
8
nvim/lua/kawaii.lua
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
require("pets").setup({
|
||||||
|
row = 5,
|
||||||
|
default_peth = "dog",
|
||||||
|
default_style = "black",
|
||||||
|
popup = {
|
||||||
|
width = "100%",
|
||||||
|
},
|
||||||
|
})
|
Loading…
Reference in a new issue