Update
This commit is contained in:
@@ -23,8 +23,10 @@
|
||||
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
colorschemes.catppuccin.enable = true;
|
||||
colorschemes.catppuccin.transparentBackground = true;
|
||||
colorschemes.catppuccin = {
|
||||
enable = true;
|
||||
settings = { transparentBackground = true; };
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
programs.nixvim.plugins.gitsigns = {
|
||||
enable = true;
|
||||
currentLineBlame = false;
|
||||
settings = { current_line_blame = false; };
|
||||
};
|
||||
}
|
||||
|
||||
@@ -11,7 +11,6 @@
|
||||
tailwindcss.enable = true;
|
||||
html.enable = true;
|
||||
svelte.enable = true;
|
||||
pylsp.enable = true;
|
||||
};
|
||||
keymaps.lspBuf = {
|
||||
"gd" = "definition";
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
|
||||
programs.nixvim.globals.mapleader = " ";
|
||||
programs.nixvim.options = {
|
||||
programs.nixvim.opts = {
|
||||
updatetime = 50; # Faster completion
|
||||
|
||||
number = true;
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
enable = true;
|
||||
keymaps = {
|
||||
"<leader>fg" = "live_grep";
|
||||
"<C-p>" = {
|
||||
action = "git_files";
|
||||
desc = "Telescope Git Files";
|
||||
};
|
||||
#"<C-p>" = {
|
||||
# action = "git_files";
|
||||
# desc = "Telescope Git Files";
|
||||
#};
|
||||
};
|
||||
extensions.fzf-native = { enable = true; };
|
||||
};
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
programs.nixvim.plugins.toggleterm = {
|
||||
enable = true;
|
||||
openMapping = "<C-t>";
|
||||
direction = "horizontal";
|
||||
settings = {
|
||||
open_mapping = "[[<c-t>]]";
|
||||
direction = "horizontal";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user