aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/packages.config
blob: adee6f7b419edcb80791363983f986ca0cfe979a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="CommonServiceLocator" version="1.3" targetFramework="net46" />
  <package id="EntityFramework" version="6.0.0" targetFramework="net472" />
  <package id="Expression.Blend.Sdk" version="1.0.2" targetFramework="net46" />
  <package id="FontAwesome.WPF" version="4.7.0.9" targetFramework="net46" />
  <package id="Google.Protobuf" version="3.4.1" targetFramework="net46" />
  <package id="MahApps.Metro" version="1.5.0" targetFramework="net46" />
  <package id="MaterialDesignColors" version="1.1.2" targetFramework="net46" />
  <package id="MaterialDesignThemes" version="2.3.1.953" targetFramework="net46" />
  <package id="Microsoft.WindowsAPICodePack-Core" version="1.1.0.0" targetFramework="net472" />
  <package id="Microsoft.WindowsAPICodePack-Shell" version="1.1.0.0" targetFramework="net472" />
  <package id="System.Reactive" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Core" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Interfaces" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Linq" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.PlatformServices" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Windows.Threading" version="3.1.1" targetFramework="net46" />
  <package id="WpfAnimatedGif" version="1.4.14" targetFramework="net46" />
</packages>
n class="ow">and "+F" or "") .. (vim.o.spell and spell_status() or "") end -- lualine builds its own section-b-backed highlights for the diff/diagnostics -- components (lualine_b_diff_added_normal, lualine_b_diagnostics_error_normal, -- ...). Stamp bold onto them with update=true so only the bold attribute -- changes -- fg and section b's background are left untouched. Must run after -- lualine (re)creates the groups: initial setup, theme switch, colorscheme. local function bold_diff_diag() for name in pairs(vim.api.nvim_get_hl(0, {})) do if name:find("^lualine_b_diff") or name:find("^lualine_b_diagnostics") then vim.api.nvim_set_hl(0, name, { bold = true, update = true }) end end end vim.api.nvim_create_autocmd("ColorScheme", { desc = "Re-bold lualine diff/diagnostics after colorscheme rebuild", group = vim.g.dotfiles.augroup, callback = function() vim.schedule(bold_diff_diag) end, }) local lualine_sections = { lualine_c = { statuses, "filename" }, lualine_x = { "encoding", "fileformat", "filetype", "lsp_status" }, } local lualine_options = { disabled_filetypes = { "netrw", "qf" }, component_separators = { left = "|", right = "|" }, section_separators = { left = "", right = "" }, } local function setup() lualine_options.theme = vim.o.background == "light" and "solarized_light" or "solarized_dark" lualine.setup({ options = lualine_options, sections = lualine_sections }) end -- Adjust colors when the theme (light/dark) changes vim.api.nvim_create_autocmd("OptionSet", { desc = "Adjust color scheme", pattern = "background", group = vim.g.dotfiles.augroup, callback = function() setup() vim.schedule(bold_diff_diag) end, }) setup() vim.schedule(bold_diff_diag) vim.api.nvim_create_user_command("LualineConfig", function() vim.notify(vim.inspect(lualine.get_config())) end, { desc = "Show lualine configuration" })