Merge branch 'master' of git.dustinswan.com:dustinswan/dotfiles
This commit is contained in:
@@ -16,7 +16,6 @@ in
|
|||||||
ghc haskell-language-server hlint haskellPackages.hoogle
|
ghc haskell-language-server hlint haskellPackages.hoogle
|
||||||
lua53Packages.luarocks
|
lua53Packages.luarocks
|
||||||
ispell aspell aspellDicts.en aspellDicts.en-computers aspellDicts.en-science aspellDicts.fr aspellDicts.de aspellDicts.eo aspellDicts.es
|
ispell aspell aspellDicts.en aspellDicts.en-computers aspellDicts.en-science aspellDicts.fr aspellDicts.de aspellDicts.eo aspellDicts.es
|
||||||
fontconfig iosevka iosevka-bin
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
@@ -237,11 +236,7 @@ in
|
|||||||
withNodeJs = true;
|
withNodeJs = true;
|
||||||
withPython3 = true;
|
withPython3 = true;
|
||||||
withRuby = true;
|
withRuby = true;
|
||||||
};
|
extraLuaConfig = builtins.readFile ./vim.lua;
|
||||||
|
|
||||||
home.file.nvim = {
|
|
||||||
target = ".config/nvim/init.lua";
|
|
||||||
source = ./init.lua;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.bat = {
|
programs.bat = {
|
||||||
|
|||||||
@@ -303,6 +303,25 @@ require('packer').startup(function(use)
|
|||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
use({
|
||||||
|
"chentoast/marks.nvim",
|
||||||
|
config = function()
|
||||||
|
require("marks").setup()
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
use({
|
||||||
|
"utilyre/barbecue.nvim",
|
||||||
|
tag = "*",
|
||||||
|
requires = {
|
||||||
|
"SmiteshP/nvim-navic",
|
||||||
|
"nvim-tree/nvim-web-devicons",
|
||||||
|
},
|
||||||
|
config = function()
|
||||||
|
require("barbecue").setup()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require('packer').sync()
|
require('packer').sync()
|
||||||
end
|
end
|
||||||
Reference in New Issue
Block a user