Ported of what little I had in my normal neovim config and some extra
parent
b06764087d
commit
9581ea40e8
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{ self, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
extranConfigLua = ''
|
||||||
|
print("Welcome to Vim, Hertog! :3")
|
||||||
|
'';
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
{ self, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
plugins.lsp = {
|
||||||
|
enable = true;
|
||||||
|
servers = {
|
||||||
|
# Nix
|
||||||
|
nixd = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
# Rust
|
||||||
|
rust-analyzer = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
# Godot
|
||||||
|
gdscript = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue