feat: typora use monospace font
This commit is contained in:
parent
e1965e6441
commit
a9cf808c60
|
@ -13,6 +13,7 @@ keymap(NORMAL, '<leader>ss', ':source ~/.config/nvim/init.lua<cr>', { noremap =
|
|||
keymap(NORMAL, '<leader>sc', ':source %<cr>', { noremap = true })
|
||||
keymap(NORMAL, '<leader>w', ':w<cr>', { noremap = true })
|
||||
keymap(VISUAL, '<leader>y', '"+y<cr>', { noremap = true })
|
||||
keymap(VISUAL, '<leader>p', '"0p<cr>', { noremap = true })
|
||||
keymap(NORMAL, '<leader>q', ':bd<cr>', { noremap = true })
|
||||
keymap(NORMAL, '<leader>qq', ':qall<cr>', { noremap = true })
|
||||
keymap(NORMAL, '<leader>ne', ':e %:h<cr>', { noremap = true })
|
||||
|
|
|
@ -3,5 +3,11 @@ if not nvim_tree_ok then
|
|||
return
|
||||
end
|
||||
|
||||
nvim_tree.setup{}
|
||||
nvim_tree.setup{
|
||||
actions = {
|
||||
change_dir = {
|
||||
global = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -5,3 +5,5 @@ DIR=$(dirname "$(readlink -f "$0")")
|
|||
log 'Setting up typora'
|
||||
|
||||
lnsf "$DIR/typora/typora.desktop" ~/.local/share/applications/typora.desktop
|
||||
lnsf "$DIR/typora/base.user.css" ~/.local/share/applications/base.user.css
|
||||
|
||||
|
|
3
gui/typora/base.user.css
Normal file
3
gui/typora/base.user.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
body {
|
||||
font-family: monospace;
|
||||
}
|
Loading…
Reference in New Issue
Block a user