lualine: hide filename
This commit is contained in:
parent
0ed2ecd5f9
commit
2a3a14de15
1 changed files with 10 additions and 6 deletions
|
@ -67,7 +67,7 @@ require("lazy").setup({
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"nvim-lualine/lualine.nvim", -- status line
|
"nvim-lualine/lualine.nvim", -- status line
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"kyazdani42/nvim-web-devicons", -- for filetype icons
|
"kyazdani42/nvim-web-devicons", -- for filetype icons
|
||||||
},
|
},
|
||||||
|
@ -80,6 +80,10 @@ require("lazy").setup({
|
||||||
-- color scheme
|
-- color scheme
|
||||||
theme = "tokyonight",
|
theme = "tokyonight",
|
||||||
},
|
},
|
||||||
|
-- hide filename
|
||||||
|
sections = {
|
||||||
|
lualine_c = {},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -102,7 +106,7 @@ require("lazy").setup({
|
||||||
"glepnir/lspsaga.nvim",
|
"glepnir/lspsaga.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-treesitter/nvim-treesitter", -- optional
|
"nvim-treesitter/nvim-treesitter", -- optional
|
||||||
"nvim-tree/nvim-web-devicons", -- optional
|
"nvim-tree/nvim-web-devicons", -- optional
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
lightbulb = {
|
lightbulb = {
|
||||||
|
@ -114,7 +118,7 @@ require("lazy").setup({
|
||||||
{
|
{
|
||||||
"romgrk/barbar.nvim",
|
"romgrk/barbar.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"lewis6991/gitsigns.nvim", -- OPTIONAL: for git status
|
"lewis6991/gitsigns.nvim", -- OPTIONAL: for git status
|
||||||
"nvim-tree/nvim-web-devicons", -- OPTIONAL: for file icons
|
"nvim-tree/nvim-web-devicons", -- OPTIONAL: for file icons
|
||||||
},
|
},
|
||||||
init = function()
|
init = function()
|
||||||
|
@ -125,13 +129,13 @@ require("lazy").setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "lewis6991/gitsigns.nvim", opts = {} },
|
{ "lewis6991/gitsigns.nvim", opts = {} },
|
||||||
})
|
})
|
||||||
|
|
||||||
-- LSP related
|
-- LSP related
|
||||||
require("plugins.lspconfig") -- utilizes lsp
|
require("plugins.lspconfig") -- utilizes lsp
|
||||||
require("plugins.completions") -- adds completions
|
require("plugins.completions") -- adds completions
|
||||||
require("plugins.treesitter") -- better highlights
|
require("plugins.treesitter") -- better highlights
|
||||||
|
|
||||||
-- QoL
|
-- QoL
|
||||||
require("plugins.nvim-tree") -- file explorer
|
require("plugins.nvim-tree") -- file explorer
|
||||||
|
|
Loading…
Reference in a new issue