fix: more nvim config
This commit is contained in:
parent
c9bd4c00a0
commit
fc664c2a39
|
@ -26,6 +26,7 @@
|
|||
require("onedark").load()
|
||||
'';
|
||||
extraConfigLuaPost = ''
|
||||
vim.notify = require("notify")
|
||||
'';
|
||||
};
|
||||
home.sessionVariables.EDITOR = "nvim";
|
||||
|
|
|
@ -7,12 +7,15 @@
|
|||
];
|
||||
programs.nixvim.plugins = {
|
||||
lualine = {
|
||||
theme = "auto";
|
||||
globalstatus = true;
|
||||
extensions = [
|
||||
"nvim-tree"
|
||||
"quickfix"
|
||||
"fugitive"
|
||||
];
|
||||
};
|
||||
notify.enable = true;
|
||||
indent-blankline = {
|
||||
enable = true;
|
||||
extraOptions = {
|
||||
|
@ -38,6 +41,15 @@
|
|||
extensions = {
|
||||
fzf-native.enable = true;
|
||||
};
|
||||
enabledExtensions = ["notify"];
|
||||
keymaps = {
|
||||
"<leader>gf" = {
|
||||
action = "git_files";
|
||||
desc = "Telescope Git Files";
|
||||
};
|
||||
"<leader>gg" = "live_grep";
|
||||
};
|
||||
keymapsSilent = true;
|
||||
};
|
||||
|
||||
# Undo tree
|
||||
|
|
Loading…
Reference in a new issue