added a go development file + added temp go import
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
go
|
||||
|
||||
# Language server
|
||||
gopls
|
||||
|
||||
# Formatter with automatic import management
|
||||
gotools
|
||||
|
||||
# Linting
|
||||
golangci-lint
|
||||
|
||||
# Debugger
|
||||
delve
|
||||
|
||||
# Useful extras
|
||||
air # Live reload for web apps
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user