337 current 2024-04-14 16:15:15 24.05.20240414.bc59f72 6.8.4-zen1 *
This commit is contained in:
parent
4347118e02
commit
058c28de5a
4 changed files with 83 additions and 55 deletions
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
26
modules/shell/tmux.nix
Normal 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 = ''
|
||||
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue