mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 00:45:17 -06:00
few bugfixes, mini.files
This commit is contained in:
parent
4ceceff9bf
commit
14fec02d63
9 changed files with 149 additions and 162 deletions
|
|
@ -105,22 +105,26 @@ with lib;
|
|||
# and prepends the nvim and after directory to the RTP
|
||||
initLua = ''
|
||||
vim.opt.rtp:prepend('${nvimRtp}/lua')
|
||||
lazy_opts = {
|
||||
LAZY_OPTS = {
|
||||
performance = {
|
||||
reset_packpath = false,
|
||||
rtp = { reset = false, },
|
||||
rtp = {
|
||||
reset = false,
|
||||
disabled_plugins = {
|
||||
"netrwPlugin",
|
||||
"tutor",
|
||||
},
|
||||
},
|
||||
},
|
||||
dev = {
|
||||
path = "${pkgs.neovimUtils.packDir neovimConfig.packpathDirs}/pack/myNeovimPackages/start",
|
||||
patterns = {""},
|
||||
},
|
||||
checker = {
|
||||
enabled = false,
|
||||
},
|
||||
install = { missing = false, },
|
||||
spec = {{ import = "plugins" }},
|
||||
disabled_plugins = {
|
||||
"netrwPlugin",
|
||||
"tutor",
|
||||
"zipPlugin",
|
||||
},
|
||||
}
|
||||
'' + (builtins.readFile ../nvim/init.lua);
|
||||
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ with final.pkgs.lib; let
|
|||
nvim-lspconfig
|
||||
nvim-neoclip-lua
|
||||
nvim-nio
|
||||
nvim-autopairs
|
||||
nvim-treesitter-context
|
||||
nvim-treesitter-textobjects
|
||||
(nvim-treesitter.withPlugins(p: with p; [
|
||||
|
|
@ -72,8 +73,6 @@ with final.pkgs.lib; let
|
|||
tree-sitter-typescript
|
||||
tree-sitter-yaml
|
||||
]))
|
||||
nvim-web-devicons
|
||||
oil-nvim
|
||||
outline-nvim
|
||||
scope-nvim
|
||||
snipe-nvim
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue