24022024
This commit is contained in:
parent
dab7bd09bc
commit
722c90257f
4 changed files with 11 additions and 0 deletions
1
global/.config/nvim/ftplugin/markdown.lua
Normal file
1
global/.config/nvim/ftplugin/markdown.lua
Normal file
|
@ -0,0 +1 @@
|
||||||
|
vim.cmd([[set briopt+=list:-1]])
|
|
@ -29,6 +29,8 @@ opt.completeopt = "menuone,noinsert,noselect"
|
||||||
opt.showmode = false
|
opt.showmode = false
|
||||||
-- opt.tabline = '%!v:lua.require("utils").tabline()'
|
-- opt.tabline = '%!v:lua.require("utils").tabline()'
|
||||||
opt.conceallevel = 2
|
opt.conceallevel = 2
|
||||||
|
opt.breakindent = true
|
||||||
|
opt.breakindentopt = "shift:2"
|
||||||
|
|
||||||
-- Behaviour
|
-- Behaviour
|
||||||
opt.hidden = true
|
opt.hidden = true
|
||||||
|
|
|
@ -7,6 +7,8 @@ local config = function()
|
||||||
templates = templates,
|
templates = templates,
|
||||||
template_new_note = templates .. "/" .. "new_note",
|
template_new_note = templates .. "/" .. "new_note",
|
||||||
template_new_daily = templates .. "/" .. "dialy_note",
|
template_new_daily = templates .. "/" .. "dialy_note",
|
||||||
|
image_subdir = "img",
|
||||||
|
media_previewer = "catimg-previewer",
|
||||||
vim.api.nvim_command("hi tkLink ctermfg=36 cterm=bold,underline guifg=#10ac84 gui=bold,underline"),
|
vim.api.nvim_command("hi tkLink ctermfg=36 cterm=bold,underline guifg=#10ac84 gui=bold,underline"),
|
||||||
vim.api.nvim_command("hi tkBrackets ctermfg=gray guifg=gray"),
|
vim.api.nvim_command("hi tkBrackets ctermfg=gray guifg=gray"),
|
||||||
|
|
||||||
|
|
|
@ -73,6 +73,8 @@ alias python='python3'
|
||||||
alias py='python'
|
alias py='python'
|
||||||
## todo.txt
|
## todo.txt
|
||||||
alias todo="todo.sh -d ~/Dropbox/TextSync/TODO/todo.cfg"
|
alias todo="todo.sh -d ~/Dropbox/TextSync/TODO/todo.cfg"
|
||||||
|
## cb (https://github.com/Slackadays/Clipboard)
|
||||||
|
alias cb='flatpak run app.getclipboard.Clipboard'
|
||||||
|
|
||||||
# Preferred editor for local and remote sessions
|
# Preferred editor for local and remote sessions
|
||||||
export EDITOR='vim'
|
export EDITOR='vim'
|
||||||
|
@ -104,8 +106,12 @@ export PATH=$PATH:$HOME/.config/emacs/bin
|
||||||
export GOPATH=$HOME/go # don't forget to change your path correctly!
|
export GOPATH=$HOME/go # don't forget to change your path correctly!
|
||||||
export PATH=$PATH:$GOPATH/bin
|
export PATH=$PATH:$GOPATH/bin
|
||||||
export PATH=$PATH:/usr/local/go/bin
|
export PATH=$PATH:/usr/local/go/bin
|
||||||
|
## cargo
|
||||||
|
export PATH=$PATH:$HOME/.cargo/bin
|
||||||
## color
|
## color
|
||||||
export TERM=tmux-256color
|
export TERM=tmux-256color
|
||||||
|
## Flatpak
|
||||||
|
export PATH=$PATH:/var/lib/flatpak/exports/bin
|
||||||
|
|
||||||
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
||||||
export VOLTA_HOME="$HOME/.volta"
|
export VOLTA_HOME="$HOME/.volta"
|
||||||
|
|
Loading…
Add table
Reference in a new issue