We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin affected: * Nixpkgs channel: unstable Home-manager version: master
Before 3849a1d, everything seemed fine. Now, the generated init.lua is 10 lines long, filled with 10 empty lines.
init.lua
programs.nixvim = { enable = true; colorschemes.gruvbox = { enable = true; contrastLight = "hard"; contrastDark = "hard"; }; options = { number = true; shiftwidth = 2; tabstop = 2; guifont = "FiraCode\ Nerd\ Font\ Mono:h14"; }; plugins = { lsp = { enable = true; servers.rnix-lsp.enable = true; servers.rust-analyzer.enable = true; servers.jsonls.enable = true; }; nvim-tree = { enable = true; openOnSetup = true; openOnTab = true; }; telescope = { enable = true; }; nvim-cmp = { formatting = { format = '' require("lspkind").cmp_format({ mode="symbol", maxwidth = 50, ellipsis_char = "..." }) ''; }; auto_enable_sources = true; snippet = { expand = '' function(args) require("luasnip").lsp_expand(args.body) end ''; }; enable = true; sources = [ { name = "nvim_lsp"; } { name = "luasnip"; option = { show_autosnippets = true; }; } { name = "path"; } { name = "buffer"; } ]; }; barbar.enable = true; }; globals.mapleader = " "; extraPlugins = with pkgs.vimPlugins; [ which-key-nvim leap-nvim vim-flutter plenary-nvim fidget-nvim luasnip lspkind-nvim ]; extraConfigLua = (builtins.readFile ./nvim-extra-lua.lua); }; }
The text was updated successfully, but these errors were encountered:
Oh god D: I'll try to fix this asap
Sorry, something went wrong.
Should(?) be fixed! Can you try it @gilice?
1a89cd2
seems fine. thanks !!
pta2002
No branches or pull requests
Plugin affected: *
Nixpkgs channel: unstable
Home-manager version: master
Description
Before 3849a1d, everything seemed fine. Now, the generated
init.lua
is 10 lines long, filled with 10 empty lines.Config
The text was updated successfully, but these errors were encountered: