Migrate from neovim to vim
This commit is contained in:
parent
98bd78c823
commit
d86f8477fc
|
@ -2,8 +2,9 @@ weechat/.weechat/*.log
|
||||||
weechat/.weechat/logs
|
weechat/.weechat/logs
|
||||||
weechat/.weechat/script/
|
weechat/.weechat/script/
|
||||||
weechat/.weechat/sec.conf
|
weechat/.weechat/sec.conf
|
||||||
neovim/.config/nvim/.netrwhist
|
vim/.vim/.netrwhist
|
||||||
neovim/.config/nvim/plugged
|
vim/.vim/plugged
|
||||||
|
vim/.vim/autoload
|
||||||
deluge/.config/deluge/state/
|
deluge/.config/deluge/state/
|
||||||
deluge/.config/deluge/*.state
|
deluge/.config/deluge/*.state
|
||||||
deluge/.config/deluge/icons/
|
deluge/.config/deluge/icons/
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Text Editor
|
# Text Editor
|
||||||
set -x EDITOR nvim
|
set -x EDITOR vim
|
||||||
|
|
||||||
# Man colors
|
# Man colors
|
||||||
set -g man_standout -o blue
|
set -g man_standout -o blue
|
||||||
|
@ -8,12 +8,11 @@ set -g man_bold -o magenta
|
||||||
# Aliases
|
# Aliases
|
||||||
alias f "fff"
|
alias f "fff"
|
||||||
alias bc "bc -l"
|
alias bc "bc -l"
|
||||||
alias vim "nvim"
|
|
||||||
alias docker-compose "podman-compose"
|
alias docker-compose "podman-compose"
|
||||||
alias hdmi-audio "pactl set-card-profile 0 output:hdmi-stereo-extra1"
|
alias hdmi-audio "pactl set-card-profile 0 output:hdmi-stereo-extra1"
|
||||||
alias laptop-audio "pacmd set-card-profile 0 output:analog-stereo+input:analog-stereo"
|
alias laptop-audio "pacmd set-card-profile 0 output:analog-stereo+input:analog-stereo"
|
||||||
alias sc "systemctl"
|
alias sc "systemctl"
|
||||||
alias jc "journalctl -fu"
|
alias jc "journalctl -eu"
|
||||||
|
|
||||||
# Additional paths
|
# Additional paths
|
||||||
set PATH $PATH $HOME/.emacs.d/bin
|
set PATH $PATH $HOME/.emacs.d/bin
|
||||||
|
|
|
@ -31,7 +31,7 @@ let g:UltiSnipsExpandTrigger = '<tab>'
|
||||||
let g:UltiSnipsJumpForwardTrigger = '<tab>'
|
let g:UltiSnipsJumpForwardTrigger = '<tab>'
|
||||||
let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
||||||
""Vim-plug
|
""Vim-plug
|
||||||
call plug#begin('~/.config/nvim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
||||||
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' }
|
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' }
|
||||||
Plug 'SirVer/ultisnips', { 'for': 'markdown' }
|
Plug 'SirVer/ultisnips', { 'for': 'markdown' }
|
||||||
|
@ -42,6 +42,9 @@ call plug#end()
|
||||||
colorscheme iceberg
|
colorscheme iceberg
|
||||||
set bg=dark
|
set bg=dark
|
||||||
set termguicolors
|
set termguicolors
|
||||||
|
""Sets the colorscheme in tmux
|
||||||
|
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
||||||
|
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
|
||||||
""Disabe status line
|
""Disabe status line
|
||||||
set laststatus=0
|
set laststatus=0
|
||||||
""Set Markdown filetype for neomutt
|
""Set Markdown filetype for neomutt
|
Loading…
Reference in New Issue