337 current 2024-04-14 16:15:15 24.05.20240414.bc59f72 6.8.4-zen1 *

This commit is contained in:
zackartz 2024-04-14 16:15:24 -04:00
parent 4347118e02
commit 058c28de5a
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
4 changed files with 83 additions and 55 deletions

View file

@ -1,23 +1,27 @@
return {
{ "folke/neodev.nvim", ft = "lua", opts = {} },
{
"b0o/schemastore.nvim",
ft = "json",
config = function()
require("lspconfig").jsonls.setup({
capabilities = require("lsp.capabilities"),
settings = {
json = {
schemas = require("schemastore").json.schemas(),
validate = { enable = true },
},
},
})
end,
},
{
'mrcjkb/rustaceanvim',
version = '^4', -- Recommended
ft = { 'rust' },
}
{ "folke/neodev.nvim", ft = "lua", opts = {} },
{
"b0o/schemastore.nvim",
ft = "json",
config = function()
require("lspconfig").jsonls.setup({
capabilities = require("lsp.capabilities"),
settings = {
json = {
schemas = require("schemastore").json.schemas(),
validate = { enable = true },
},
},
})
end,
},
{
"mrcjkb/rustaceanvim",
version = "^4", -- Recommended
ft = { "rust" },
},
{
"christoomey/vim-tmux-navigator",
lazy = false,
},
}

View file

@ -16,7 +16,7 @@
while inotifywait -e close_write $1; do pandoc $@; done
'';
in {
imports = [./zsh ./zsh/tools.nix ./git.nix ./starship.nix];
imports = [./zsh ./zsh/tools.nix ./tmux.nix ./git.nix ./starship.nix];
home.packages = with pkgs; [
texlive

26
modules/shell/tmux.nix Normal file
View file

@ -0,0 +1,26 @@
{pkgs, ...}: let
tmux-super-fingers =
pkgs.tmuxPlugins.mkTmuxPlugin
{
pluginName = "tmux-super-fingers";
version = "unstable-2023-01-06";
src = pkgs.fetchFromGitHub {
owner = "artemave";
repo = "tmux_super_fingers";
rev = "2c12044984124e74e21a5a87d00f844083e4bdf7";
sha256 = "sha256-cPZCV8xk9QpU49/7H8iGhQYK6JwWjviL29eWabuqruc=";
};
};
in {
programs.tmux = {
enable = true;
shell = "${pkgs.zsh}/bin/zsh";
historyLimit = 100000;
plugins = with pkgs; [
tmuxPlugins.sensible
];
extraConfig = ''
'';
};
}