tmux bufferline
This commit is contained in:
parent
b41769f156
commit
9c088e3cc6
3 changed files with 71 additions and 1 deletions
6
init.lua
6
init.lua
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue