fix(intro): Get nvim intro back
This commit is contained in:
parent
e4c35ffecb
commit
5b8a3c6fc9
@ -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()
|
||||||
|
@ -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' },
|
||||||
|
Loading…
Reference in New Issue
Block a user