feat(nvim): support for nix

This commit is contained in:
Price Hiller 2022-08-19 20:02:41 -05:00
parent c6ec7e7af7
commit 7e62eef733
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,6 @@
local opt_local = vim.opt_local
opt_local.tabstop = 2
opt_local.shiftwidth = 2
vim.api.nvim_buf_set_option(0, "commentstring", "# %s")

View File

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
services = {
httpd = {
enable = true;
adminAddr = "alice@example.org";
virtualHosts = {
localhost = {
documentRoot = "/webroot";
};
};
};
};
}