.dotfiles/.config/home-manager/nvim.nix

25 lines
421 B
Nix
Raw Permalink Normal View History

2023-04-11 11:08:44 +00:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
nodejs # needed for lsp
2024-02-28 23:42:00 +00:00
neovim # editor
fzf # fuzzy finder
];
2024-02-28 23:42:00 +00:00
# programs.neovim = {
# enable = true;
# extraLuaConfig = ''
#require("set")
#require("remap")
#require("plugins")
#require("utils")
#
#local status, ts_install = pcall(require, "nvim-treesitter.install")
#if(status) then
# ts_install.compilers = { "${pkgs.gcc}/bin/gcc" }
#end
# '';
# };
2023-04-11 11:08:44 +00:00
}