first commit
This commit is contained in:
commit
cd3ca919f0
16 changed files with 2071 additions and 0 deletions
5
nixos/home-manager/programs/neovim/config.lua
Normal file
5
nixos/home-manager/programs/neovim/config.lua
Normal file
|
@ -0,0 +1,5 @@
|
|||
require("indent_blankline").setup {
|
||||
-- for example, context is off by default, use this to turn it on
|
||||
show_current_context = true,
|
||||
show_current_context_start = true,
|
||||
}
|
7
nixos/home-manager/programs/neovim/neovim.nix
Normal file
7
nixos/home-manager/programs/neovim/neovim.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
|
||||
{
|
||||
programs.neovim = {
|
||||
enable= true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue