mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 14:45:58 +01:00
feat: toggleterm
This commit is contained in:
parent
d867dae743
commit
202eaaf322
6 changed files with 94 additions and 0 deletions
17
flake.lock
17
flake.lock
|
@ -975,6 +975,7 @@
|
||||||
"telescope": "telescope",
|
"telescope": "telescope",
|
||||||
"tidalcycles": "tidalcycles",
|
"tidalcycles": "tidalcycles",
|
||||||
"todo-comments": "todo-comments",
|
"todo-comments": "todo-comments",
|
||||||
|
"toggleterm-nvim": "toggleterm-nvim",
|
||||||
"tokyonight": "tokyonight",
|
"tokyonight": "tokyonight",
|
||||||
"trouble": "trouble",
|
"trouble": "trouble",
|
||||||
"venn-nvim": "venn-nvim",
|
"venn-nvim": "venn-nvim",
|
||||||
|
@ -1162,6 +1163,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"toggleterm-nvim": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1675358836,
|
||||||
|
"narHash": "sha256-9O7p/7tRStg51OFhMc88M5ewYquiYC9x9CV4s5veVP8=",
|
||||||
|
"owner": "akinsho",
|
||||||
|
"repo": "toggleterm.nvim",
|
||||||
|
"rev": "19aad0f41f47affbba1274f05e3c067e6d718e1e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "akinsho",
|
||||||
|
"repo": "toggleterm.nvim",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"tokyonight": {
|
"tokyonight": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
19
flake.nix
19
flake.nix
|
@ -102,36 +102,45 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
vim.tabline.nvimBufferline.enable = true;
|
vim.tabline.nvimBufferline.enable = true;
|
||||||
|
|
||||||
vim.treesitter = {
|
vim.treesitter = {
|
||||||
enable = true;
|
enable = true;
|
||||||
context.enable = true;
|
context.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.binds = {
|
vim.binds = {
|
||||||
whichKey.enable = true;
|
whichKey.enable = true;
|
||||||
cheatsheet.enable = true;
|
cheatsheet.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.telescope = {
|
vim.telescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.markdown = {
|
vim.markdown = {
|
||||||
enable = true;
|
enable = true;
|
||||||
glow.enable = true;
|
glow.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.git = {
|
vim.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
gitsigns.enable = true;
|
gitsigns.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.minimap = {
|
vim.minimap = {
|
||||||
minimap-vim.enable = false;
|
minimap-vim.enable = false;
|
||||||
codewindow.enable = true; # lighter, faster, and uses lua for configuration
|
codewindow.enable = true; # lighter, faster, and uses lua for configuration
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.dashboard = {
|
vim.dashboard = {
|
||||||
dashboard-nvim.enable = false;
|
dashboard-nvim.enable = false;
|
||||||
alpha.enable = true;
|
alpha.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.notify = {
|
vim.notify = {
|
||||||
nvim-notify.enable = true;
|
nvim-notify.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.utility = {
|
vim.utility = {
|
||||||
colorizer.enable = true;
|
colorizer.enable = true;
|
||||||
icon-picker.enable = true;
|
icon-picker.enable = true;
|
||||||
|
@ -142,6 +151,10 @@
|
||||||
obsidian.enable = false; # FIXME neovim fails to build if obsidian is enabled
|
obsidian.enable = false; # FIXME neovim fails to build if obsidian is enabled
|
||||||
orgmode.enable = true;
|
orgmode.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim.terminal = {
|
||||||
|
toggleterm.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -528,6 +541,12 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Terminal
|
||||||
|
toggleterm-nvim = {
|
||||||
|
url = "github:akinsho/toggleterm.nvim";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
plenary-nvim = {
|
plenary-nvim = {
|
||||||
# (required by crates-nvim)
|
# (required by crates-nvim)
|
||||||
|
|
|
@ -59,6 +59,7 @@ with lib; let
|
||||||
"obsidian-nvim"
|
"obsidian-nvim"
|
||||||
"vim-markdown"
|
"vim-markdown"
|
||||||
"tabular"
|
"tabular"
|
||||||
|
"toggleterm-nvim"
|
||||||
];
|
];
|
||||||
# You can either use the name of the plugin or a package.
|
# You can either use the name of the plugin or a package.
|
||||||
pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));
|
pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
./utility
|
./utility
|
||||||
./presence
|
./presence
|
||||||
./notes
|
./notes
|
||||||
|
./terminal
|
||||||
];
|
];
|
||||||
|
|
||||||
pkgsModule = {config, ...}: {
|
pkgsModule = {config, ...}: {
|
||||||
|
|
5
modules/terminal/default.nix
Normal file
5
modules/terminal/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
_: {
|
||||||
|
imports = [
|
||||||
|
./toggleterm.nix
|
||||||
|
];
|
||||||
|
}
|
51
modules/terminal/toggleterm.nix
Normal file
51
modules/terminal/toggleterm.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib;
|
||||||
|
with builtins; let
|
||||||
|
cfg = config.vim.terminal.toggleterm;
|
||||||
|
in {
|
||||||
|
options.vim.terminal.toggleterm = {
|
||||||
|
enable = mkEnableOption "Enable toggleterm as a replacement to built-in terminal command";
|
||||||
|
direction = mkOption {
|
||||||
|
type = types.enum ["horizontal" "vertical" "tab" "float"];
|
||||||
|
default = "float";
|
||||||
|
description = "Direction of the terminal";
|
||||||
|
};
|
||||||
|
enable_winbar = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Enable winbar";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
vim.startPlugins = [
|
||||||
|
"toggleterm-nvim"
|
||||||
|
];
|
||||||
|
|
||||||
|
vim.luaConfigRC.toggleterm = nvim.dag.entryAnywhere ''
|
||||||
|
require("toggleterm").setup({
|
||||||
|
open_mapping = [[<c-t>]],
|
||||||
|
direction = '${toString cfg.direction}',
|
||||||
|
-- TODO: this should probably be turned into a module that uses the lua function if and only if the user has not set it
|
||||||
|
size = function(term)
|
||||||
|
if term.direction == "horizontal" then
|
||||||
|
return 15
|
||||||
|
elseif term.direction == "vertical" then
|
||||||
|
return vim.o.columns * 0.4
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
winbar = {
|
||||||
|
enabled = '${toString cfg.enable_winbar}',
|
||||||
|
name_formatter = function(term) -- term: Terminal
|
||||||
|
return term.name
|
||||||
|
end
|
||||||
|
},
|
||||||
|
})
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue