Compare commits

...

2 commits

Author SHA1 Message Date
vanten-s 9f8b5c0a7b
Added models 2024-03-27 21:16:01 +01:00
vanten-s 389d7f9889
Fixed silicon and added markdown preview 2024-03-26 19:36:44 +01:00
3 changed files with 10 additions and 4 deletions

View file

@ -200,8 +200,8 @@ in {
in ["${automount_opts},credentials=/etc/nixos/smb-secrets,uid=1000,gid=100"];
};
fileSystems."/mnt/development" = {
device = "//vanten-s.com/development";
fileSystems."/mnt/models" = {
device = "//vanten-s.com/models";
fsType = "cifs";
options = let
# this line prevents hanging on network split

View file

@ -9,7 +9,7 @@ require('silicon').setup({
pad_vert = 80,
pad_horiz = 50,
output = {
path = "/home/krivah/Pictures/Screenshots",
path = "/home/svante/Pictures/Screenshots",
format = "silicon_[year][month][day]_[hour][minute][second].png",
},
window_title = function()

View file

@ -10,5 +10,11 @@ return {
{ 'hrsh7th/nvim-cmp' },
{ 'hrsh7th/cmp-vsnip' },
{ 'hrsh7th/vim-vsnip' },
{ 'krivahtoo/silicon.nvim', build = './install.sh' }
{ 'krivahtoo/silicon.nvim', build = './install.sh' },
{
"iamcco/markdown-preview.nvim",
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
ft = { "markdown" },
build = function() vim.fn["mkdp#util#install"]() end,
},
}