mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
nixvimConfigs/trovebelt: init
This commit is contained in:
parent
8ccbcc6fb0
commit
ce379c6823
@ -1,13 +1,23 @@
|
|||||||
{ lib, ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
setups.nixvim = {
|
setups.nixvim.configs = {
|
||||||
configs.fiesta = {
|
fiesta = {
|
||||||
nixpkgsBranches = [
|
nixpkgsBranches = [
|
||||||
"nixos-unstable"
|
"nixos-unstable"
|
||||||
"nixpkgs-unstable"
|
"nixpkgs-unstable"
|
||||||
];
|
];
|
||||||
neovimPackages = pkgs: with pkgs; [
|
neovimPackages = p: with p; [
|
||||||
|
neovim-nightly
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
trovebelt = {
|
||||||
|
nixpkgsBranches = [
|
||||||
|
"nixos-unstable"
|
||||||
|
"nixpkgs-unstable"
|
||||||
|
];
|
||||||
|
neovimPackages = p: with p; [
|
||||||
neovim-nightly
|
neovim-nightly
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
6
configs/nixvim/trovebelt/README.adoc
Normal file
6
configs/nixvim/trovebelt/README.adoc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
= Trovebelt, the use-for-all-of-the-other-software-development-projects NixVim configuration
|
||||||
|
:toc:
|
||||||
|
|
||||||
|
|
||||||
|
A large NixVim configuration intended to be used for everything software development-related and a little bit of everything.
|
||||||
|
This is mainly used for non-NixOS environments (including WSL) where installing additional dependencies such as language servers and tree-sitter language servers is a pain.
|
20
configs/nixvim/trovebelt/default.nix
Normal file
20
configs/nixvim/trovebelt/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
# Some general settings.
|
||||||
|
globals = {
|
||||||
|
mapleader = " ";
|
||||||
|
maplocalleader = ",";
|
||||||
|
syntax = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
options = {
|
||||||
|
encoding = "utf-8";
|
||||||
|
completeopt = [ "menuone" "noselect" ];
|
||||||
|
expandtab = true;
|
||||||
|
shiftwidth = 4;
|
||||||
|
tabstop = 4;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user