an attempt was made

This commit is contained in:
2026-04-10 12:15:22 +01:00
parent 761f890b10
commit 624fefdd18
5 changed files with 42 additions and 10 deletions

27
flake.lock generated Normal file
View File

@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1775423009,
"narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@@ -82,15 +82,9 @@
]; ];
shellHook = '' shellHook = ''
export TREE_SITTER_LIB_PATH="${pkgs.tree-sitter}/lib" export TREE_SITTER_LIB_PATH="${pkgs.tree-sitter}/lib"
echo "Neovim LSP environment loaded" echo "Neovim LSP environment loaded"
export DEVSHELL_NAME="󱄅 flake/#89dceb" export DEVSHELL_NAME="󱄅 flake/#89dceb"
# Trigger zsh
if [[ -z "$ZSH_VERSION" ]]; then
exec zsh
fi
''; '';
}; };
}; };

View File

@@ -1,4 +1,4 @@
require("config.lazy") require("plugins.init")
-- Colorcheme -- Colorcheme
vim.cmd.colorscheme("catppuccin-mocha") vim.cmd.colorscheme("catppuccin-mocha")

1
plugins/init.lua Normal file
View File

@@ -0,0 +1 @@
require("plugins.ui.catppuccin")

10
plugins/ui/catppuccin.lua Normal file
View File

@@ -0,0 +1,10 @@
vim.pack.add({ { src = "https://github.com/catppuccin/nvim", name = "catppuccin" } })
require("catppuccin").setup({
transparent_background = true, -- disables setting the background color.
float = {
transparent = true, -- enable transparent floating windows
solid = false, -- use solid styling for floating windows, see |winborder|
},
show_end_of_buffer = true, -- shows the '~' characters after the end of buffers
})