feat: use unstable neovim packages
This commit is contained in:
parent
b5d454b619
commit
1420de7bfc
3 changed files with 44 additions and 9 deletions
|
@ -45,7 +45,7 @@ let
|
|||
};
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs.unstable; [
|
||||
xclip
|
||||
|
||||
# language servers
|
||||
|
@ -68,7 +68,7 @@ in
|
|||
];
|
||||
|
||||
# symlink for a stable path
|
||||
home.file.".vscode-extensions/vscode-lldb".source = pkgs.vscode-extensions.vadimcn.vscode-lldb;
|
||||
home.file.".vscode-extensions/vscode-lldb".source = pkgs.unstable.vscode-extensions.vadimcn.vscode-lldb;
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
|
@ -77,7 +77,8 @@ in
|
|||
programs = {
|
||||
neovim = {
|
||||
enable = true;
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
# package = pkgs.unstable.neovim;
|
||||
plugins = with pkgs.unstable.vimPlugins; [
|
||||
# theme
|
||||
nvim-solarized-lua
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue