removed cmake plugin

This commit is contained in:
Oliver Hartmann 2022-12-03 00:40:02 +01:00
parent 814ebfa3ce
commit 64f65a1d57
2 changed files with 0 additions and 17 deletions

View File

@ -117,13 +117,6 @@ return require('packer').startup(function()
use({ 'L3MON4D3/LuaSnip', config = get_setup('luasnip') }) use({ 'L3MON4D3/LuaSnip', config = get_setup('luasnip') })
use({ 'rafamadriz/friendly-snippets' }) use({ 'rafamadriz/friendly-snippets' })
use({ 'onsails/lspkind-nvim' }) use({ 'onsails/lspkind-nvim' })
use({ 'Shatur/neovim-cmake',
requires = { 'mfussenegger/nvim-dap' },
config = get_setup('cmake'),
opt = true,
module = 'cmake',
cmd = 'CMake'
})
use({ use({
'hoob3rt/lualine.nvim', 'hoob3rt/lualine.nvim',
requires = { 'kyazdani42/nvim-web-devicons', opt = true }, requires = { 'kyazdani42/nvim-web-devicons', opt = true },

View File

@ -1,10 +0,0 @@
local opt = vim.opt -- to set options
-- require('telescope').load_extension('cmake')
require('cmake').setup({
parameters_file = 'neovim.json', -- JSON file to store information about selected target, run arguments and build type.
build_dir = '{cwd}/build_nvim', -- Build directory. The expressions `{cwd}`, `{os}` and `{build_type}` will be expanded with the corresponding text values.
})
-- msbuild errorformat
opt.errorformat:append('\\ %#%f(%l\\\\\\,%c):\\ %m')
-- cl.exe errorformat
-- o.errorformat:append('\ %#%f(%l) : %#%t%[A-z]%# %m')