[nvim] buffer tabs and mouse

This commit is contained in:
odrling 2022-02-08 18:42:30 +01:00
parent 2552130966
commit 9895440375
No known key found for this signature in database
GPG key ID: A0145F975F9F8B75
2 changed files with 14 additions and 0 deletions

View file

@ -45,6 +45,9 @@ set lazyredraw
" For regular expressions turn magic on
set magic
" mouse
set mouse=nv
" How many tenths of a second to blink when matching brackets
set mat=2
@ -303,6 +306,15 @@ source ~/.config/nvim/neogit.vim
source ~/.config/nvim/telescope.vim
lua require('gitsigns').setup({ current_line_blame = true })
lua << EOF
require("bufferline").setup {
options = {
show_buffer_close_icons = false,
show_close_icon = false,
show_buffer_icons = false,
}
}
EOF
colorscheme space_vim_theme

View file

@ -43,6 +43,8 @@ return require('packer').startup {
}
use {'nvim-telescope/telescope-fzf-native.nvim', run = 'make' }
use {'nvim-telescope/telescope-ui-select.nvim'}
use {'akinsho/bufferline.nvim'}
use {'moll/vim-bbye'}
-- Misc
use {