fix(intro): Get nvim intro back

This commit is contained in:
Ryan 2024-04-27 14:25:22 +08:00
parent e4c35ffecb
commit 5b8a3c6fc9
2 changed files with 2 additions and 8 deletions

View File

@ -49,7 +49,6 @@ local plugins = {
-- TS, LSP, Completion -- TS, LSP, Completion
{ {
"williamboman/mason.nvim", "williamboman/mason.nvim",
lazy = true
}, },
{ {
@ -80,7 +79,6 @@ local plugins = {
require("luasnip").setup() require("luasnip").setup()
require("luasnip.loaders.from_vscode").lazy_load() require("luasnip.loaders.from_vscode").lazy_load()
end, end,
lazy = true,
-- install jsregexp (optional!). -- install jsregexp (optional!).
build = "make install_jsregexp" build = "make install_jsregexp"
}, },
@ -110,7 +108,6 @@ local plugins = {
dependencies = { dependencies = {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
}, },
lazy = true
}, },
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
@ -190,7 +187,6 @@ local plugins = {
{ {
'nvim-telescope/telescope-fzf-native.nvim', 'nvim-telescope/telescope-fzf-native.nvim',
build = 'CFLAGS=-march=native make', build = 'CFLAGS=-march=native make',
lazy = true
}, },
{ {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
@ -286,7 +282,6 @@ local plugins = {
{ {
"lewis6991/gitsigns.nvim", "lewis6991/gitsigns.nvim",
event = "BufEnter", event = "BufEnter",
lazy = true,
keys = { keys = {
-- View changed in git -- View changed in git
vim.keymap.set('n', ']c', function() vim.keymap.set('n', ']c', function()

View File

@ -1,10 +1,9 @@
require 'lualine'.setup { require('lualine').setup {
options = { options = {
icons_enabled = true, icons_enabled = true,
theme = 'auto', theme = 'auto',
component_separators = "", component_separators = "",
section_separators = " ", section_separators = "",
disabled_filetypes = {}
}, },
sections = { sections = {
lualine_a = { 'mode' }, lualine_a = { 'mode' },