neovim md autocommands, also tmux config tweak
This commit is contained in:
parent
0127ea6ee5
commit
cdeec91309
|
@ -9,3 +9,6 @@ vim.api.nvim_command([[au FileType sql lua require'cmp'.setup.buffer {
|
||||||
{ name = 'buffer' },
|
{ name = 'buffer' },
|
||||||
}}
|
}}
|
||||||
]])
|
]])
|
||||||
|
|
||||||
|
-- word break and spelling in markdown files
|
||||||
|
vim.api.nvim_command('au BufRead,BufNewFile *.md set spell lbr')
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
set-option -g history-limit 100000
|
set-option -g history-limit 100000
|
||||||
set-option -g status off
|
set-option -g status off
|
||||||
set-option -g focus-events on
|
set-option -g focus-events on
|
||||||
|
set-option -g detach-on-destroy off
|
||||||
|
|
||||||
set -ga terminal-overrides ",*256col*:Tc"
|
set -ga terminal-overrides ",*256col*:Tc"
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
|
Loading…
Reference in New Issue