diff --git a/home/nixvim.nix b/home/nixvim.nix index a2e0803..2d26581 100644 --- a/home/nixvim.nix +++ b/home/nixvim.nix @@ -29,6 +29,42 @@ termguicolors = true; updatetime = 100; wrap = true; + splitright = true; + splitbelow = true; + }; + maps = { + normal = { + "" = { + action = ":bp"; + }; + "" = { + action = ":bn"; + }; + "" = { + silent = true; + action = ":noh"; + }; + "1" = { + silent = true; + action = ":NvimTreeToggle"; + }; + "`" = { + silent = true; + action = ":split term://zsh"; + }; + "ff" = { + silent = true; + action = "Telescope find_files"; + }; + "fg" = { + silent = true; + action = "Telescope live_grep"; + }; + "fb" = { + silent = true; + action = "Telescope buffers"; + }; + }; }; extraPlugins = with pkgs.vimPlugins; [ dracula-nvim git-blame-nvim ]; colorscheme = "dracula";