NixOnDroid : Add nvim config.

This commit is contained in:
Dmitry Voronin 2024-03-06 05:47:59 +03:00
parent beb438451d
commit bb2816caf5
2 changed files with 79 additions and 6 deletions

View file

@ -1,4 +1,6 @@
{ pkgs, inputs, const, ... }: { { pkgs, inputs, const, ... }: let
homePath = "/data/data/com.termux.nix/files/home";
in {
environment.packages = with pkgs; [ environment.packages = with pkgs; [
android-tools android-tools
binwalk binwalk
@ -22,7 +24,6 @@
ltex-ls ltex-ls
man man
ncdu ncdu
neovim
nmap nmap
openssh openssh
parallel parallel
@ -43,15 +44,16 @@
home.file = { home.file = {
".nixos".source = inputs.self; ".nixos".source = inputs.self;
".bash".source = ./common/bash; ".bash".source = ./common/bash;
".nvim".source = ./common/nvim;
".ssh/config".source = ./common/ssh/Config; ".ssh/config".source = ./common/ssh/Config;
}; };
home.sessionVariables = { home.sessionVariables = {
BASH_MODULE_PATH = "$HOME/.bash/module"; BASH_MODULE_PATH = "${homePath}/.bash/module";
BASH_PATH = "$HOME/.bash"; BASH_PATH = "${homePath}/.bash";
}; };
programs.bash = { programs.bash = {
enable = true; enable = true;
bashrcExtra = "source ~/.bash/Bashrc.sh"; bashrcExtra = "source ${homePath}/.bash/Bashrc.sh";
}; };
programs.tmux = { programs.tmux = {
enable = true; enable = true;
@ -67,5 +69,76 @@
rebase.autoStash = true; rebase.autoStash = true;
}; };
}; };
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
extraConfig = ''
set runtimepath+=~/.cache/nvim
set runtimepath+=~/.cache/nvim/treesitter
set runtimepath+=${inputs.nvimAlign}
set runtimepath+=${inputs.nvimAutoclose}
set runtimepath+=${inputs.nvimBufferline}
set runtimepath+=${inputs.nvimCloseBuffers}
set runtimepath+=${inputs.nvimDevicons}
set runtimepath+=${inputs.nvimGitsigns}
set runtimepath+=${inputs.nvimGruvboxMaterial}
set runtimepath+=${inputs.nvimIndentoMatic}
set runtimepath+=${inputs.nvimLspconfig}
set runtimepath+=${inputs.nvimLualine}
set runtimepath+=${inputs.nvimOllama}
set runtimepath+=${inputs.nvimPlenary}
set runtimepath+=${inputs.nvimSingleComment}
set runtimepath+=${inputs.nvimTelescope}
set runtimepath+=${inputs.nvimTodo}
set runtimepath+=${inputs.nvimTokyonight}
set runtimepath+=${inputs.nvimTreesitter}
set runtimepath+=${inputs.nvimTree}
set runtimepath+=${inputs.nvimTrouble}
set runtimepath+=${inputs.nvimWhichKey}
lua dofile("${homePath}/.nvim/key/Rekey.lua")
lua dofile("${homePath}/.nvim/key/Leader.lua")
lua dofile("${homePath}/.nvim/config/Autoread.lua")
lua dofile("${homePath}/.nvim/config/Etc.lua")
lua dofile("${homePath}/.nvim/config/Search.lua")
lua dofile("${homePath}/.nvim/config/Tab.lua")
lua dofile("${homePath}/.nvim/plugin/Filetree.lua")
lua dofile("${homePath}/.nvim/plugin/lsp/Rust.lua")
lua dofile("${homePath}/.nvim/plugin/lsp/Tex.lua")
lua dofile("${homePath}/.nvim/plugin/Bufferline.lua")
lua dofile("${homePath}/.nvim/plugin/Lualine.lua")
lua dofile("${homePath}/.nvim/plugin/Autoclose.lua")
lua dofile("${homePath}/.nvim/plugin/Gitsigns.lua")
lua dofile("${homePath}/.nvim/plugin/Trouble.lua")
lua dofile("${homePath}/.nvim/plugin/Tokyonight.lua")
lua dofile("${homePath}/.nvim/plugin/Gruvbox.lua")
lua dofile("${homePath}/.nvim/plugin/Closebuffers.lua")
lua dofile("${homePath}/.nvim/plugin/Telescope.lua")
lua dofile("${homePath}/.nvim/plugin/Todo.lua")
lua dofile("${homePath}/.nvim/plugin/Indent.lua")
lua dofile("${homePath}/.nvim/plugin/Align.lua")
lua dofile("${homePath}/.nvim/plugin/Treesitter.lua")
lua dofile("${homePath}/.nvim/plugin/Fold.lua")
lua dofile("${homePath}/.nvim/plugin/Ollama.lua")
lua dofile("${homePath}/.nvim/key/Autocomplete.lua")
lua dofile("${homePath}/.nvim/key/Buffer.lua")
lua dofile("${homePath}/.nvim/key/Comment.lua")
lua dofile("${homePath}/.nvim/key/Common.lua")
lua dofile("${homePath}/.nvim/key/Filetree.lua")
lua dofile("${homePath}/.nvim/key/Fold.lua")
lua dofile("${homePath}/.nvim/key/Gitsigns.lua")
lua dofile("${homePath}/.nvim/key/Lsp.lua")
lua dofile("${homePath}/.nvim/key/Navigation.lua")
lua dofile("${homePath}/.nvim/key/Ollama.lua")
lua dofile("${homePath}/.nvim/key/Sort.lua")
lua dofile("${homePath}/.nvim/key/Telescope.lua")
lua dofile("${homePath}/.nvim/key/Terminal.lua")
lua dofile("${homePath}/.nvim/key/Todo.lua")
lua dofile("${homePath}/.nvim/key/Trouble.lua")
lua dofile("${homePath}/.nvim/key/Update.lua")
lua dofile("${homePath}/.nvim/key/Whichkey.lua")
'';
};
}; };
} }

View file

@ -1,5 +1,5 @@
{ environment, inputs, ... }: let { environment, inputs, ... }: let
nvimSrc = "/etc/nvim/"; nvimSrc = "/etc/nvim";
in { in {
environment.etc.nvim.source = ./nvim; environment.etc.nvim.source = ./nvim;