1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Ryan Kes
278890cc29 added rust config to neovim & updated exportWiki 2020-09-17 14:08:21 +02:00
Ryan Kes
4fef04d1f3 updated coc packages 2020-09-17 14:07:41 +02:00
Ryan Kes
bba14a3028 enable tabs & snippets 2020-09-17 14:07:15 +02:00
5 changed files with 11 additions and 9 deletions

View File

@ -5,7 +5,7 @@ toDir="$HOME/devel/personal/Ryankes.eu/wiki"
date=$(date) date=$(date)
rm -rf "$toDir"/wiki/* rm -rf "$toDir"/wiki/*
grep -ril "^\#+tags:[\ a-zA-Z0-9]namepage" "$fromDir"*.org | while read -r line; do grep -ril "^\#+select_tags:[\ a-zA-Z0-9]namepage" "$fromDir"*.org | while read -r line; do
baseName="$(basename "$line")" baseName="$(basename "$line")"
markdownFilename="$(echo "$baseName" | cut -f 1 -d '.').md" markdownFilename="$(echo "$baseName" | cut -f 1 -d '.').md"
pandoc "$line" --filter convertLinks.py -t markdown_mmd+yaml_metadata_block -o "$toDir/wiki/$markdownFilename" -s pandoc "$line" --filter convertLinks.py -t markdown_mmd+yaml_metadata_block -o "$toDir/wiki/$markdownFilename" -s

View File

@ -190,4 +190,4 @@
(ispell-hunspell-add-multi-dic "en_GB,nl_NL,en_US") (ispell-hunspell-add-multi-dic "en_GB,nl_NL,en_US")
(setq ispell-dictionary "en_GB,nl_NL,en_US")) (setq ispell-dictionary "en_GB,nl_NL,en_US"))
(add-to-list 'auto-mode-alist '("\\.mdx\\'" . markdown-mode)) (add-to-list 'auto-mode-alist '("\\.mdx\\'" . markdown-mode))

View File

@ -24,6 +24,7 @@
+all ; catch all popups that start with an asterix +all ; catch all popups that start with an asterix
+defaults) ; default popup rules +defaults) ; default popup rules
ligatures ligatures
tabs
treemacs ; a project drawer, like neotree but cooler treemacs ; a project drawer, like neotree but cooler
vc-gutter ; vcs diff in the fringe vc-gutter ; vcs diff in the fringe
vi-tilde-fringe ; fringe tildes to mark beyond EOB vi-tilde-fringe ; fringe tildes to mark beyond EOB
@ -37,7 +38,7 @@
(format +onsave +format-with-lsp) ; automated prettiness (format +onsave +format-with-lsp) ; automated prettiness
;multiple-cursors ; editing in many places at once ;multiple-cursors ; editing in many places at once
;rotate-text ; cycle region at point between text candidates ;rotate-text ; cycle region at point between text candidates
;snippets ; my elves. They type so I don't have to snippets ; my elves. They type so I don't have to
word-wrap ; soft wrapping with language-aware indent word-wrap ; soft wrapping with language-aware indent
:emacs :emacs

View File

@ -1,14 +1,14 @@
{ {
"dependencies": { "dependencies": {
"coc-css": ">=1.2.4", "coc-css": ">=1.2.5",
"coc-go": ">=0.10.0", "coc-go": ">=0.11.0",
"coc-html": ">=1.2.4", "coc-html": ">=1.2.4",
"coc-jest": ">=1.0.3", "coc-jest": ">=1.0.4",
"coc-json": ">=1.2.6", "coc-json": ">=1.3.1",
"coc-pairs": ">=1.2.21", "coc-pairs": ">=1.2.21",
"coc-python": ">=1.2.12", "coc-python": ">=1.2.12",
"coc-rust-analyzer": ">=0.7.16", "coc-rust-analyzer": ">=0.8.0",
"coc-tsserver": ">=1.5.1", "coc-tsserver": ">=1.5.6",
"coc-yaml": ">=1.0.5" "coc-yaml": ">=1.0.5"
} }
} }

View File

@ -39,6 +39,7 @@
Plug 'godlygeek/tabular' Plug 'godlygeek/tabular'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' } Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' }
Plug 'rust-lang/rust.vim'
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
Plug 'tpope/vim-commentary' Plug 'tpope/vim-commentary'
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'