tmux bufferline

This commit is contained in:
Vítor Duarte Buchweitz 2024-09-23 15:20:39 -03:00
parent b41769f156
commit 9c088e3cc6
No known key found for this signature in database
GPG key ID: 9F266AE3B36B21F3
3 changed files with 71 additions and 1 deletions

View file

@ -84,6 +84,8 @@ I hope you enjoy your Neovim journey,
P.S. You can delete this when you're done too. It's your config now! :)
--]]
vim.opt.termguicolors = true
-- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
@ -868,7 +870,7 @@ require('lazy').setup({
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
vim.cmd.colorscheme 'tokyonight-moon'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
@ -959,6 +961,8 @@ require('lazy').setup({
require 'kickstart.plugins.go',
require 'kickstart.plugins.trouble',
require 'kickstart.plugins.nvim-dap-virtual-text',
require 'kickstart.plugins.bufferline',
require 'kickstart.plugins.tmux',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.