Skip to content

Commit

Permalink
perf(misc): some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
liubang committed Aug 21, 2023
1 parent ae08815 commit b2fb47e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
12 changes: 12 additions & 0 deletions after/ftplugin/c.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
--=====================================================================
--
-- c.lua -
--
-- Created by liubang on 2023/08/20 20:29
-- Last Modified: 2023/08/20 20:29
--
--=====================================================================
vim.bo.expandtab = true
vim.bo.shiftwidth = 2
vim.bo.tabstop = 2
vim.bo.softtabstop = 2
1 change: 0 additions & 1 deletion lua/plugins/completion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ return {
"hrsh7th/cmp-path",
"hrsh7th/cmp-calc",
"saadparwaiz1/cmp_luasnip",
"kdheepak/cmp-latex-symbols",
},
event = { "InsertEnter" },
config = function()
Expand Down
19 changes: 19 additions & 0 deletions lua/plugins/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,25 @@ return {
opts = {},
-- }}}
},
{
"LunarVim/bigfile.nvim", -- {{{
lazy = false,
opts = {
filesize = 2,
pattern = { "*" },
features = {
"indent_blankline",
"illuminate",
"lsp",
"treesitter",
"syntax",
"matchparen",
"vimopts",
"filetype",
},
},
-- }}}
},
}

-- vim: fdm=marker fdl=0

0 comments on commit b2fb47e

Please sign in to comment.