neovim-confs/lua/top-bufferline.lua

97 lines
2.4 KiB
Lua
Raw Normal View History

-- define some colors
2021-04-25 08:27:24 +02:00
local bar_fg = "#565c64"
local activeBuffer_fg = "#c8ccd4"
2021-03-13 02:23:02 +01:00
require "bufferline".setup {
options = {
2021-05-09 19:36:22 +02:00
offsets = {{filetype = "NvimTree", text = "Explorer"}},
2021-03-13 02:23:02 +01:00
buffer_close_icon = "",
2021-04-26 10:14:51 +02:00
modified_icon = "",
close_icon = "",
2021-03-13 02:23:02 +01:00
left_trunc_marker = "",
right_trunc_marker = "",
max_name_length = 14,
max_prefix_length = 13,
2021-05-06 16:19:02 +02:00
tab_size = 20,
show_tab_indicators = true,
enforce_regular_tabs = false,
2021-03-13 02:23:02 +01:00
view = "multiwindow",
show_buffer_close_icons = true,
separator_style = "thin",
mappings = "true"
2021-03-07 15:22:30 +01:00
},
-- bar colors!!
2021-03-13 02:23:02 +01:00
highlights = {
fill = {
2021-04-25 08:27:24 +02:00
guifg = bar_fg,
guibg = "#252931"
2021-03-13 02:23:02 +01:00
},
background = {
2021-04-25 08:27:24 +02:00
guifg = bar_fg,
guibg = "#252931"
2021-03-13 02:23:02 +01:00
},
-- buffer
2021-03-07 15:22:30 +01:00
buffer_selected = {
2021-04-25 08:27:24 +02:00
guifg = activeBuffer_fg,
2021-05-06 16:19:02 +02:00
guibg = "#1e222a",
2021-03-13 02:23:02 +01:00
gui = "bold"
},
2021-04-06 04:59:37 +02:00
buffer_visible = {
2021-04-25 08:27:24 +02:00
guifg = "#9298a0",
guibg = "#252931"
2021-04-06 04:59:37 +02:00
},
-- tabs over right
tab = {
guifg = "#9298a0",
guibg = "#30343c"
},
2021-05-09 19:36:22 +02:00
tab_selected = {
guifg = "#30343c",
guibg = "#9298a0"
2021-03-13 02:23:02 +01:00
},
2021-05-09 19:36:22 +02:00
tab_close = {
guifg = "#f9929b",
guibg = "#252931"
},
-- buffer separators
2021-03-13 02:23:02 +01:00
separator = {
guifg = "#252931",
guibg = "#252931"
},
separator_selected = {
guifg = "#1e222a",
guibg = "#1e222a"
},
separator_visible = {
guifg = "#252931",
guibg = "#252931"
2021-03-13 02:23:02 +01:00
},
indicator_selected = {
guifg = "#252931",
guibg = "#252931"
2021-03-13 02:23:02 +01:00
},
-- modified files (but not saved)
2021-03-07 15:22:30 +01:00
modified_selected = {
2021-05-06 16:19:02 +02:00
guifg = "#A3BE8C",
guibg = "#1e222a"
},
modified_visible = {
guifg = "#BF616A",
guibg = "#23272f"
2021-03-13 02:23:02 +01:00
}
}
2021-03-07 15:22:30 +01:00
}
2021-03-18 14:49:45 +01:00
local opt = {silent = true}
2021-04-25 08:27:24 +02:00
local map = vim.api.nvim_set_keymap
2021-03-18 14:49:45 +01:00
vim.g.mapleader = " "
-- MAPPINGS
map("n", "<S-t>", [[<Cmd>tabnew<CR>]], opt) -- new tab
map("n", "<S-x>", [[<Cmd>bdelete<CR>]], opt) -- close tab
2021-04-01 20:53:12 +02:00
-- move between tabs
map("n", "<TAB>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
map("n", "<S-TAB>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)