an attempt was made
This commit is contained in:
27
flake.lock
generated
Normal file
27
flake.lock
generated
Normal 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
|
||||||
|
}
|
||||||
12
flake.nix
12
flake.nix
@@ -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
|
|
||||||
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
2
init.lua
2
init.lua
@@ -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
1
plugins/init.lua
Normal file
@@ -0,0 +1 @@
|
|||||||
|
require("plugins.ui.catppuccin")
|
||||||
10
plugins/ui/catppuccin.lua
Normal file
10
plugins/ui/catppuccin.lua
Normal 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
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user