Ported of what little I had in my normal neovim config and some extra

main
Johannes Hendrik Gerard van der Weide 2024-02-09 13:40:14 +01:00
parent b06764087d
commit 9581ea40e8
3 changed files with 30 additions and 0 deletions

View File

@ -1,6 +1,8 @@
{ {
# Import all your configuration modules here # Import all your configuration modules here
imports = [ imports = [
./extraLua.nix
./lsp.nix
./colourScheme.nix ./colourScheme.nix
]; ];
} }

7
config/extraLua.nix Normal file
View File

@ -0,0 +1,7 @@
{ self, ... }:
{
extranConfigLua = ''
print("Welcome to Vim, Hertog! :3")
'';
}

21
config/lsp.nix Normal file
View File

@ -0,0 +1,21 @@
{ self, ... }:
{
plugins.lsp = {
enable = true;
servers = {
# Nix
nixd = {
enable = true;
};
# Rust
rust-analyzer = {
enable = true;
};
# Godot
gdscript = {
enable = true;
};
};
};
}