remake dir structure for home-manager
This commit is contained in:
parent
9415d40508
commit
3151b79560
26 changed files with 9 additions and 9 deletions
25
home/features/cli/neovim.nix
Normal file
25
home/features/cli/neovim.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
# LazyVim
|
||||
lua-language-server
|
||||
stylua
|
||||
# Telescope
|
||||
ripgrep
|
||||
];
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
lazy-nvim
|
||||
];
|
||||
};
|
||||
|
||||
home.sessionVariables.EDITOR = "nvim";
|
||||
|
||||
xdg.configFile."nvim/init.lua".source = ../../../dotfiles/nvim/init.lua;
|
||||
xdg.configFile."nvim/stylua.toml".source = ../../../dotfiles/nvim/stylua.toml;
|
||||
xdg.configFile."nvim/.neoconf.json".source = ../../../dotfiles/nvim/.neoconf.json;
|
||||
xdg.configFile."nvim/lua".source = ../../../dotfiles/nvim/lua;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue