-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(float): max height/width control
- Loading branch information
Showing
8 changed files
with
104 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
vim.cmd("hi default link DapUIVariable Normal") | ||
vim.cmd("hi default DapUIScope guifg=#00F1F5") | ||
vim.cmd("hi default DapUIType guifg=#D484FF") | ||
vim.cmd("hi default DapUIDecoration guifg=#00F1F5") | ||
vim.cmd("hi default DapUIThread guifg=#A9FF68") | ||
vim.cmd("hi default DapUIStoppedThread guifg=#00f1f5") | ||
vim.cmd("hi default link DapUIFrameName Normal") | ||
vim.cmd("hi default DapUIFrameSource guifg=#D484FF") | ||
vim.cmd("hi default DapUILineNumber guifg=#00f1f5") | ||
vim.cmd("hi default DapUIFloatBorder guifg=#00F1F5") | ||
vim.cmd("hi default DapUIWatchesHeader guifg=#00F1F5") | ||
vim.cmd("hi default DapUIWatchesEmpty guifg=#F70067") | ||
vim.cmd("hi default DapUIWatchesValue guifg=#A9FF68") | ||
vim.cmd("hi default DapUIWatchesError guifg=#F70067") | ||
vim.cmd("hi default DapUIWatchesFrame guifg=#D484FF") | ||
local M = {} | ||
|
||
function M.setup() | ||
vim.cmd("hi default link DapUIVariable Normal") | ||
vim.cmd("hi default DapUIScope guifg=#00F1F5") | ||
vim.cmd("hi default DapUIType guifg=#D484FF") | ||
vim.cmd("hi default DapUIDecoration guifg=#00F1F5") | ||
vim.cmd("hi default DapUIThread guifg=#A9FF68") | ||
vim.cmd("hi default DapUIStoppedThread guifg=#00f1f5") | ||
vim.cmd("hi default link DapUIFrameName Normal") | ||
vim.cmd("hi default DapUIFrameSource guifg=#D484FF") | ||
vim.cmd("hi default DapUILineNumber guifg=#00f1f5") | ||
vim.cmd("hi default DapUIFloatBorder guifg=#00F1F5") | ||
vim.cmd("hi default DapUIWatchesHeader guifg=#00F1F5") | ||
vim.cmd("hi default DapUIWatchesEmpty guifg=#F70067") | ||
vim.cmd("hi default DapUIWatchesValue guifg=#A9FF68") | ||
vim.cmd("hi default DapUIWatchesError guifg=#F70067") | ||
vim.cmd("hi default DapUIWatchesFrame guifg=#D484FF") | ||
end | ||
|
||
return M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters