Remove bufferline.nvim

This commit is contained in:
Dave Gallant
2021-09-22 17:01:50 -04:00
parent ecebafaca5
commit 41ffa69b74
2 changed files with 6 additions and 7 deletions

View File

@@ -17,8 +17,8 @@ let
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "davegallant"; owner = "davegallant";
repo = "hound.nvim"; repo = "hound.nvim";
rev = "13dd6061f1614c514feab68200779ae4bd08273d"; rev = "e85ba4f65ece79fe6332d8a0ccc594a0d367f4ed";
sha256 = "sha256-VZLbfEjWOYwQtVT1kOycRZKNmAd/IhiYZnCtm4Y/DWY="; sha256 = "sha256-fxPtixVB6dVjrxpJ1oP+eA00JSiKxWuii8pMxVeuyMY=";
}; };
}; };
inherit (pkgs) stdenv; inherit (pkgs) stdenv;
@@ -314,7 +314,6 @@ in
extraConfig = "lua require('init')"; extraConfig = "lua require('init')";
plugins = with pkgs.vimPlugins; [ plugins = with pkgs.vimPlugins; [
bufferline-nvim
completion-nvim completion-nvim
git-blame-nvim git-blame-nvim
gitlinker-nvim gitlinker-nvim

View File

@@ -139,9 +139,6 @@ require('lualine').setup {
} }
} }
-- bufferline
require("bufferline").setup{}
-- treesitter -- treesitter
require('nvim-treesitter.configs').setup({ require('nvim-treesitter.configs').setup({
ensure_installed = "all", ensure_installed = "all",
@@ -259,7 +256,10 @@ require("twilight").setup {
require("hound").setup { require("hound").setup {
hound_base_url = "http://hound", -- Rely on Tailscale's MagicDNS hound_base_url = "http://hound", -- Rely on Tailscale's MagicDNS
hound_port = 6080, -- the port hound is running on hound_port = 6080, -- the port hound is running on
split = "split", -- split horizontally search_results_buffer = "tabnew", -- how to open the search results (vsplit, split, tabnew)
display_file_match_urls = true, -- whether or not urls should be displayed alongside file matches
hound_url_pattern = "https://github.com/{repo}/blob/{revision}/{path}", -- the format of the url displayed for file matches
} }
vim.api.nvim_set_keymap("n", "<leader>hs", ":Hound", vim.api.nvim_set_keymap("n", "<leader>hs", ":Hound",
{silent = true, noremap = true} {silent = true, noremap = true}