non important commit
This commit is contained in:
parent
350c092d03
commit
8b9c254add
1 changed files with 42 additions and 5 deletions
|
|
@ -1,4 +1,8 @@
|
||||||
{inputs, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nvf.homeManagerModules.default
|
inputs.nvf.homeManagerModules.default
|
||||||
];
|
];
|
||||||
|
|
@ -18,6 +22,30 @@
|
||||||
harper-ls.enable = true;
|
harper-ls.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
debugger = {
|
||||||
|
nvim-dap = {
|
||||||
|
enable = true;
|
||||||
|
ui.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
options = {
|
||||||
|
tabstop = 2;
|
||||||
|
autoindent = true;
|
||||||
|
shiftwidth = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
clipboard = {
|
||||||
|
enable = true;
|
||||||
|
registers = "unnamedplus";
|
||||||
|
providers = {
|
||||||
|
xclip = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.xclip;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
languages = {
|
languages = {
|
||||||
enableFormat = true;
|
enableFormat = true;
|
||||||
enableExtraDiagnostics = true;
|
enableExtraDiagnostics = true;
|
||||||
|
|
@ -28,9 +56,14 @@
|
||||||
bash.enable = true;
|
bash.enable = true;
|
||||||
nu.enable = true;
|
nu.enable = true;
|
||||||
|
|
||||||
clang.enable = true;
|
|
||||||
css.enable = true;
|
css.enable = true;
|
||||||
html.enable = true;
|
html = {
|
||||||
|
enable = true;
|
||||||
|
lsp.servers = [
|
||||||
|
"emmet-ls"
|
||||||
|
"superhtml"
|
||||||
|
];
|
||||||
|
};
|
||||||
python.enable = true;
|
python.enable = true;
|
||||||
|
|
||||||
rust = {
|
rust = {
|
||||||
|
|
@ -51,7 +84,6 @@
|
||||||
statusline = {
|
statusline = {
|
||||||
lualine = {
|
lualine = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "catppuccin";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -63,6 +95,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
autopairs.nvim-autopairs.enable = true;
|
autopairs.nvim-autopairs.enable = true;
|
||||||
|
snippets.luasnip.enable = true;
|
||||||
|
telescope.enable = true;
|
||||||
|
|
||||||
autocomplete = {
|
autocomplete = {
|
||||||
blink-cmp.enable = true;
|
blink-cmp.enable = true;
|
||||||
|
|
@ -93,6 +127,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
utility = {
|
utility = {
|
||||||
|
ccc.enable = true;
|
||||||
diffview-nvim.enable = true;
|
diffview-nvim.enable = true;
|
||||||
icon-picker.enable = true;
|
icon-picker.enable = true;
|
||||||
surround.enable = true;
|
surround.enable = true;
|
||||||
|
|
@ -105,6 +140,8 @@
|
||||||
precognition.enable = true;
|
precognition.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
comments.comment-nvim.enable = true;
|
||||||
|
|
||||||
images = {
|
images = {
|
||||||
img-clip.enable = true;
|
img-clip.enable = true;
|
||||||
};
|
};
|
||||||
|
|
@ -116,7 +153,7 @@
|
||||||
illuminate.enable = true;
|
illuminate.enable = true;
|
||||||
|
|
||||||
breadcrumbs = {
|
breadcrumbs = {
|
||||||
enable = false;
|
enable = true;
|
||||||
navbuddy.enable = true;
|
navbuddy.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue