chore: fmt

This commit is contained in:
u2515h 2023-12-17 12:59:06 +01:00
parent 36ef92f9c6
commit 5de2ea6dd6

View File

@ -28,7 +28,8 @@ in
extraPackages = with pkgs; [ fzf xclip fish ];
plugins = with pkgs.vimPlugins; [
vim-fugitive
neogit diffview-nvim
neogit
diffview-nvim
vim-airline
zephyr-nvim
vim-nix
@ -69,12 +70,15 @@ in
oil-nvim
distant-nvim
];
extraLuaConfig = let paths = {
extraLuaConfig =
let
paths = {
lldb = pkgs.lldb;
rust_analyzer = rust-analyzer;
};
confDir = lib.sourceFilesBySuffices ./. [ "lua" "vim" ];
in with lib; ''
in
with lib; ''
vim.cmd [[source ${confDir}/init.vim]]
${concatStringsSep "\n" (mapAttrsToList (name: path: ''${name}_path = "${path}"'') paths)}
dofile("${confDir}/init.lua")