aboutsummaryrefslogtreecommitdiff
path: root/lua/cmake/config.lua
diff options
context:
space:
mode:
authorDaniil Rozanov <daniilrozzanov@gmail.com>2024-05-03 02:38:09 +0300
committerDaniil Rozanov <daniilrozzanov@gmail.com>2024-05-03 02:38:09 +0300
commit75abc91c93dd89b1f9dee4b6aeba284009ae0b93 (patch)
tree753fdf0f537227f6b8759f6d09aa040b6fe47c3c /lua/cmake/config.lua
parent1caad46f40e1965e4bf0cc68d98f341bc4310d8c (diff)
fix: delete unused option
Diffstat (limited to 'lua/cmake/config.lua')
-rw-r--r--lua/cmake/config.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/lua/cmake/config.lua b/lua/cmake/config.lua
index 0392319..4bf49ba 100644
--- a/lua/cmake/config.lua
+++ b/lua/cmake/config.lua
@@ -4,7 +4,6 @@
---@field generate_after_save boolean Generate after saving `CMakeLists.txt` file
---@field cmake_terminal CMakeConfigCMakeTerminal Settings for terminal where cmake will be executed
---@field target_terminal CMakeConfigTargetTerminal Settings for terminal where executable targets will be executed
----@field disabled_commands string[] List of commands that will not be initialized
---@class CMakeConfigCMake
---@field cmake_path string Path to `cmake` executable
@@ -97,7 +96,6 @@ local default_config = {
long = { sep = " ❄ ", show = false },
},
keybinds = {},
- disable_commands = {},
}
local M = vim.deepcopy(default_config)