treewide: use neovim from standalone flake
This commit is contained in:
parent
ab2df81b3e
commit
4551a70984
4 changed files with 2102 additions and 283 deletions
2146
flake.lock
2146
flake.lock
File diff suppressed because it is too large
Load diff
|
@ -67,6 +67,10 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
niri.url = "github:sodiboo/niri-flake";
|
niri.url = "github:sodiboo/niri-flake";
|
||||||
|
neovim-flake = {
|
||||||
|
url = "git+https://git.nezia.dev/nezia/neovim-flake";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
nvf.url = "github:notashelf/nvf";
|
nvf.url = "github:notashelf/nvf";
|
||||||
portfolio.url = "github:nezia1/portfolio";
|
portfolio.url = "github:nezia1/portfolio";
|
||||||
plasma-manager = {
|
plasma-manager = {
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./browsers
|
./browsers
|
||||||
./media
|
./media
|
||||||
./xdg.nix
|
./xdg.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
./editors/neovim.nix
|
|
||||||
./editors/helix.nix
|
./editors/helix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -35,9 +38,6 @@
|
||||||
nautilus
|
nautilus
|
||||||
simple-scan
|
simple-scan
|
||||||
entr
|
entr
|
||||||
# inputs.self.packages.${pkgs.system}.mcuxpresso.ide
|
inputs.neovim-flake.packages.${pkgs.system}.default
|
||||||
# dfu-util
|
|
||||||
# segger-jlink
|
|
||||||
# inputs.self.packages.${pkgs.system}.mcuxpresso.config-tools
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,223 +0,0 @@
|
||||||
{
|
|
||||||
inputs,
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [inputs.nvf.homeManagerModules.default];
|
|
||||||
|
|
||||||
programs.nvf = {
|
|
||||||
enable = true;
|
|
||||||
settings.vim = {
|
|
||||||
viAlias = true;
|
|
||||||
vimAlias = true;
|
|
||||||
enableLuaLoader = true;
|
|
||||||
preventJunkFiles = true;
|
|
||||||
tabWidth = 4;
|
|
||||||
autoIndent = false;
|
|
||||||
useSystemClipboard = true;
|
|
||||||
|
|
||||||
luaConfigPost = lib.concatStrings [
|
|
||||||
''
|
|
||||||
vim.opt.formatoptions:remove('c')
|
|
||||||
vim.opt.formatoptions:remove('r')
|
|
||||||
vim.opt.formatoptions:remove('o')
|
|
||||||
''
|
|
||||||
];
|
|
||||||
|
|
||||||
maps = {
|
|
||||||
normal = {
|
|
||||||
"<leader>m" = {
|
|
||||||
silent = true;
|
|
||||||
action = "<cmd>make<CR>";
|
|
||||||
}; # Same as nnoremap <leader>m <silent> <cmd>make<CR>
|
|
||||||
"<leader>t" = {
|
|
||||||
silent = true;
|
|
||||||
action = "<cmd>Neotree toggle<CR>";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
theme = {
|
|
||||||
enable = true;
|
|
||||||
name = "catppuccin";
|
|
||||||
style = "macchiato";
|
|
||||||
};
|
|
||||||
|
|
||||||
visuals = {
|
|
||||||
enable = true;
|
|
||||||
nvimWebDevicons.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
ui = {
|
|
||||||
noice.enable = true;
|
|
||||||
};
|
|
||||||
notify.nvim-notify.enable = true;
|
|
||||||
|
|
||||||
statusline = {
|
|
||||||
lualine = {
|
|
||||||
enable = true;
|
|
||||||
theme = "auto";
|
|
||||||
componentSeparator = {
|
|
||||||
left = "";
|
|
||||||
};
|
|
||||||
sectionSeparator = {
|
|
||||||
left = "";
|
|
||||||
right = "";
|
|
||||||
};
|
|
||||||
|
|
||||||
activeSection = {
|
|
||||||
a = [
|
|
||||||
''
|
|
||||||
{
|
|
||||||
"mode",
|
|
||||||
separator = { right = "" },
|
|
||||||
right_padding = 2
|
|
||||||
}
|
|
||||||
''
|
|
||||||
];
|
|
||||||
b = [
|
|
||||||
''
|
|
||||||
{
|
|
||||||
"branch",
|
|
||||||
icon = '',
|
|
||||||
separator = { right = "" }
|
|
||||||
}
|
|
||||||
''
|
|
||||||
];
|
|
||||||
c = [
|
|
||||||
''
|
|
||||||
"filename"
|
|
||||||
''
|
|
||||||
];
|
|
||||||
x = [
|
|
||||||
''
|
|
||||||
{
|
|
||||||
"diagnostics",
|
|
||||||
sources = {'nvim_lsp', 'nvim_diagnostic', 'nvim_diagnostic', 'vim_lsp', 'coc'},
|
|
||||||
symbols = {error = ' ', warn = ' ', info = ' ', hint = ' '},
|
|
||||||
colored = true,
|
|
||||||
update_in_insert = false,
|
|
||||||
always_visible = false,
|
|
||||||
diagnostics_color = {
|
|
||||||
color_error = { fg = 'red' },
|
|
||||||
color_warn = { fg = 'yellow' },
|
|
||||||
color_info = { fg = 'cyan' },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
''
|
|
||||||
''
|
|
||||||
"filetype"
|
|
||||||
''
|
|
||||||
];
|
|
||||||
y = [
|
|
||||||
''
|
|
||||||
{
|
|
||||||
"progress",
|
|
||||||
separator = { left = "" },
|
|
||||||
}
|
|
||||||
''
|
|
||||||
''
|
|
||||||
''
|
|
||||||
];
|
|
||||||
z = [
|
|
||||||
''
|
|
||||||
{
|
|
||||||
"location",
|
|
||||||
separator = { left = "" },
|
|
||||||
left_padding = 2
|
|
||||||
}
|
|
||||||
''
|
|
||||||
''
|
|
||||||
{
|
|
||||||
"fileformat",
|
|
||||||
color = {fg='black'},
|
|
||||||
symbols = {
|
|
||||||
unix = '', -- e712
|
|
||||||
dos = '', -- e70f
|
|
||||||
mac = '', -- e711
|
|
||||||
},
|
|
||||||
}
|
|
||||||
''
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
inactiveSection = {
|
|
||||||
a = [
|
|
||||||
''
|
|
||||||
"filename"
|
|
||||||
''
|
|
||||||
];
|
|
||||||
z = [
|
|
||||||
''
|
|
||||||
"location"
|
|
||||||
''
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
git.enable = true;
|
|
||||||
|
|
||||||
utility = {
|
|
||||||
vim-wakatime.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
lsp = {
|
|
||||||
enable = true;
|
|
||||||
lspSignature.enable = true;
|
|
||||||
lspconfig.enable = true;
|
|
||||||
formatOnSave = true;
|
|
||||||
mappings = {
|
|
||||||
addWorkspaceFolder = "<leader>wa";
|
|
||||||
codeAction = "<leader>a";
|
|
||||||
goToDeclaration = "gD";
|
|
||||||
goToDefinition = "gd";
|
|
||||||
hover = "K";
|
|
||||||
listImplementations = "gi";
|
|
||||||
listReferences = "gr";
|
|
||||||
listWorkspaceFolders = "<leader>wl";
|
|
||||||
nextDiagnostic = "<leader>k";
|
|
||||||
previousDiagnostic = "<leader>j";
|
|
||||||
openDiagnosticFloat = "<leader>e";
|
|
||||||
removeWorkspaceFolder = "<leader>wr";
|
|
||||||
renameSymbol = "<leader>r";
|
|
||||||
signatureHelp = "<C-k>";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
autocomplete = {
|
|
||||||
enable = true;
|
|
||||||
alwaysComplete = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
autopairs.enable = true;
|
|
||||||
languages = {
|
|
||||||
enableExtraDiagnostics = true;
|
|
||||||
enableFormat = true;
|
|
||||||
enableLSP = true;
|
|
||||||
enableTreesitter = true;
|
|
||||||
|
|
||||||
nix.enable = true;
|
|
||||||
clang.enable = true;
|
|
||||||
python.enable = true;
|
|
||||||
ts.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
treesitter = {
|
|
||||||
enable = true;
|
|
||||||
fold = true;
|
|
||||||
context.enable = true;
|
|
||||||
grammars = [
|
|
||||||
pkgs.vimPlugins.nvim-treesitter.builtGrammars.nix
|
|
||||||
pkgs.vimPlugins.nvim-treesitter.builtGrammars.c
|
|
||||||
pkgs.vimPlugins.nvim-treesitter.builtGrammars.python
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
binds.whichKey.enable = true;
|
|
||||||
filetree.neo-tree.enable = true;
|
|
||||||
|
|
||||||
telescope.enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue