27 lines
611 B
Nix
27 lines
611 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
programs.nixvim = {
|
|
globals.mapleader = " ";
|
|
enable = true;
|
|
viAlias = false;
|
|
vimAlias = true;
|
|
opts = {
|
|
number = true;
|
|
relativenumber = true;
|
|
shiftwidth = 2;
|
|
tabstop = 2;
|
|
expandtab = true;
|
|
incsearch = true;
|
|
};
|
|
colorschemes.nord.enable = true;
|
|
plugins.lualine.enable = true;
|
|
plugins.nix.enable = true;
|
|
plugins.nvim-tree.enable = true;
|
|
plugins.treesitter.enable = true;
|
|
plugins.telescope.enable = true;
|
|
plugins.web-devicons.enable = true;
|
|
plugins.indent-blankline.enable = true;
|
|
};
|
|
}
|