瀏覽代碼

feat: terminal, dap, and notify active by default

Christian Chiarulli 2 年之前
父節點
當前提交
c1edf56826
共有 3 個文件被更改,包括 3 次插入2 次删除
  1. 1 1
      lua/lvim/core/dap.lua
  2. 1 1
      lua/lvim/core/notify.lua
  3. 1 0
      lua/lvim/core/terminal.lua

+ 1 - 1
lua/lvim/core/dap.lua

@@ -2,7 +2,7 @@ local M = {}
 
 M.config = function()
   lvim.builtin.dap = {
-    active = false,
+    active = true,
     on_config_done = nil,
     breakpoint = {
       text = lvim.icons.ui.Bug,

+ 1 - 1
lua/lvim/core/notify.lua

@@ -3,7 +3,7 @@ local M = {}
 local Log = require "lvim.core.log"
 
 local defaults = {
-  active = false,
+  active = true,
   on_config_done = nil,
   opts = {
     ---@usage Animation style one of { "fade", "slide", "fade_in_slide_out", "static" }

+ 1 - 0
lua/lvim/core/terminal.lua

@@ -3,6 +3,7 @@ local Log = require "lvim.core.log"
 
 M.config = function()
   lvim.builtin["terminal"] = {
+    active = true,
     on_config_done = nil,
     -- size can be a number or function which is passed the current terminal
     size = 20,