Compare commits
2 commits
bfc7edcdde
...
240ba11c28
Author | SHA1 | Date | |
---|---|---|---|
Patrick | 240ba11c28 | ||
Patrick | 3449b48e49 |
|
@ -25,9 +25,27 @@
|
|||
extraConfigLuaPre = ''
|
||||
require("onedark").load()
|
||||
'';
|
||||
extraConfigLuaPost = ''
|
||||
vim.notify = require("notify")
|
||||
'';
|
||||
extraConfigLuaPost =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
''
|
||||
vim.notify = require("notify")
|
||||
require("window-picker").setup {
|
||||
hint = "floating-big-letter",
|
||||
filter_rules = {
|
||||
bo = {
|
||||
filetype = { "neo-tree", "neo-tree-popup", "notify", "quickfix" },
|
||||
buftype = { "terminal", "quickfix", "prompt" },
|
||||
},
|
||||
},
|
||||
floating_big_letter = {
|
||||
font = "ansi-shadow",
|
||||
},
|
||||
selection_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
||||
show_prompt = false,
|
||||
}
|
||||
'';
|
||||
};
|
||||
home.sessionVariables.EDITOR = "nvim";
|
||||
home.shellAliases.vim = "nvim";
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
programs.zoxide.enable = true;
|
||||
|
||||
programs.nix-index.enable = true;
|
||||
programs.nix-index.enableZshIntegration = false;
|
||||
programs.nix-index-database.comma.enable = true;
|
||||
|
||||
programs.zsh = {
|
||||
|
|
Loading…
Reference in a new issue