Skip to content

Commit 6012bc3

Browse files
author
MomoInSpace
committedOct 5, 2023
Fixed errors
1 parent 0a1935e commit 6012bc3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

Diff for: ‎init.lua

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
-- GENERAL SETTINGS
2-
-- Dependencies:
2+
-- Dependencies:
33

44

55
--Very Basic nvim settings not using any plugins are in the basic folder:
66
require('basic/basic_nvim_settings')
77
require('basic.colorscheme')
88

9-
-- Plugin Settings:
9+
-- -- Plugin Settings:
1010
require('plugin.packer') -- This file installs packer automatically, if the file plugin/packer_compiled doesn't exist.
1111
require('plugin.luasnips')
1212
require('plugin.nvim-cmp')
@@ -34,6 +34,6 @@ require("plugin.nvim_ufo")
3434

3535

3636

37-
-- Snippets from Luasnips:
38-
local latex_init = require('snippets.init')
39-
--latex_init()
37+
-- -- Snippets from Luasnips:
38+
require('snippets.init')
39+
-- local latex_init = require('snippets.init')

Diff for: ‎lua/plugin/packer.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ return require('packer').startup(function(use)
6969

7070
-- Markdown Preview:
7171
use({
72-
"iamcco/markdown-preview.nvim",
73-
run = function() vim.fn["mkdp#util#install"]() end,
72+
"iamcco/markdown-preview.nvim",
73+
run = function() vim.fn["mkdp#util#install"]() end,
7474
})
7575

7676
use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = { "markdown" } end, ft = { "markdown" }, })

0 commit comments

Comments
 (0)
Please sign in to comment.