mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-04-19 00:07:47 +02:00
Compare commits
2 Commits
879354e12a
...
e8a7b8d896
Author | SHA1 | Date | |
---|---|---|---|
e8a7b8d896 | |||
2f74fa5c04 |
@ -1,8 +1,13 @@
|
||||
vim.api.nvim_create_autocmd({ 'BufEnter', 'FileType' },
|
||||
vim.api.nvim_create_autocmd({ 'BufEnter' },
|
||||
{
|
||||
callback = function() vim.o.foldenable = false end
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd({ 'VimLeave' },
|
||||
{
|
||||
callback = function() os.execute('mdclear ' .. vim.fn.expand('%')) end
|
||||
})
|
||||
|
||||
vim.o.shiftwidth = 2
|
||||
vim.o.softtabstop = 2
|
||||
vim.o.textwidth = 100
|
||||
|
@ -465,6 +465,10 @@ nnoremap aa :!vifm_compress %f 7z
|
||||
nnoremap rr :!lp %f<cr>
|
||||
vnoremap rr :!lp %f<cr>
|
||||
|
||||
" Mapping lower case conversion
|
||||
nnoremap cn :!cleanname %f<cr>
|
||||
vnoremap cn :!cleanname %f<cr>
|
||||
|
||||
" ------------------------------------------------------------------------------
|
||||
|
||||
" Various customization examples
|
||||
|
13
.local/bin/etc/nvim/mdclear
Executable file
13
.local/bin/etc/nvim/mdclear
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
# Clears the files created for previewing markdown files in nvim
|
||||
# based on a program by lukesmithxyz
|
||||
|
||||
case "$1" in
|
||||
*.md)
|
||||
file=$(readlink -f "$1")
|
||||
dir=$(dirname "$file")
|
||||
base="${file%.*}"
|
||||
find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(html|pdf)" -delete ;;
|
||||
*) printf "Give .md file as argument.\\n" ;;
|
||||
esac
|
Loading…
x
Reference in New Issue
Block a user