Compare commits

...

6 commits

Author SHA1 Message Date
JenChieh
1120b36351 ignore ds store 2025-02-10 17:36:30 -08:00
JenChieh
3690bb3eea fix compile warning 2025-02-10 17:33:23 -08:00
JenChieh
2d7780f076 ci: Byte compile 2025-02-10 17:29:22 -08:00
JenChieh
0e0d53d595 Bump version 2025-02-10 17:25:33 -08:00
JenChieh
1493551176 changelog 2025-02-10 17:24:52 -08:00
JenChieh
0c039a0efa chore: Add spacing for dashboard headings 2025-02-10 17:23:38 -08:00
4 changed files with 23 additions and 8 deletions

3
.gitignore vendored
View file

@ -12,3 +12,6 @@ dist/
# packaging
*-autoloads.el
*-pkg.el
# OS generated
.DS_Store

View file

@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## 1.1 (Unreleased)
## 3.0 (Unreleased)
> Released N/A
* N/A
## 2.0
> Released Feb 10, 2025
* Configure theme for `region-occurrences-highlighter`
* Configure theme for `whitespace`
* Configure theme for `fill-column-indicator`
@ -26,6 +30,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
* Configure dashboard text banner (204c9d59ce6081294fa02542dfbbd5e95b8bb172)
* Add support for `nxml-mode` (9271b350651c7404a1b71559df9feb4647879613)
* Support LSP inlay hints (ad61f777d374f67db5e5ef66ab6da2967ba83abd)
* chore: Add spacing for `dashboard` headings (0c039a0efaabd2de96dd9c80f9a52c7e3adfa57c)
## 1.0
> Released Jan 1, 2022

11
Eask
View file

@ -1,15 +1,16 @@
(package "vs-light-theme"
"1.0"
"2.0"
"Visual Studio IDE light theme")
(website-url "https://github.com/emacs-vs/vs-light-theme")
(keywords "")
(keywords "faces")
(package-file "vs-light-theme.el")
(script "test" "echo \"Error: no test specified\" && exit 1")
(source "melpa")
(source 'gnu)
(source 'melpa)
(depends-on "emacs" "24.1")
@ -17,3 +18,7 @@
(depends-on "ert-runner"))
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
(add-hook 'eask-before-compile-hook
(lambda (&rest _)
(setq byte-compile-error-on-warn t)))

View file

@ -1,11 +1,12 @@
;;; vs-light-theme.el --- Visual Studio IDE light theme
;;; vs-light-theme.el --- Visual Studio IDE light theme -*- lexical-binding: t; -*-
;; Copyright (C) 2019-2025 Shen, Jen-Chieh
;; Author: Jen-Chieh Shen
;; URL: https://github.com/emacs-vs/vs-light-theme
;; Version: 1.0
;; Version: 2.0
;; Package-Requires: ((emacs "24.1"))
;; Keywords: faces
;; This file is NOT part of GNU Emacs.
@ -191,7 +192,8 @@
`(dashboard-text-banner ((t :foreground "black")))
`(dashboard-banner-logo-title ((t :foreground "#616161")))
`(dashboard-heading ((t :foreground "#727272")))
`(dashboard-heading ((t :foreground "#727272"
:box (:line-width (-1 . 5) :color "#ffffff"))))
`(dashboard-items-face ((t :foreground "#1475B7")))
`(yascroll:thumb-fringe ((t :background "#C2C3C9" :foreground "#C2C3C9")))