dotfiles

Dotfiles for my OpenBSD environment.
Log | Files | Refs

commit c0e8d2b99c112ca203c055949a5ab5141e2a0b3a
parent 6ef82518f13cd50fbe6a71e3a8bb10797620510b
Author: Matsuda Kenji <ftvda283@gmail.com>
Date:   Sat,  3 Oct 2020 04:53:53 +0900

vimrc

Diffstat:
M.Xresources | 46++++++++++++++++++++++------------------------
M.config/mutt/muttrc | 6++++--
M.config/nvim/init.vim | 8++++++++
3 files changed, 34 insertions(+), 26 deletions(-)

diff --git a/.Xresources b/.Xresources @@ -7,30 +7,28 @@ URxvt.saveLines: 3000 URxvt.fading: 20 -!! Color Scheme and Opacity - gruvbox-dark https://github.com/morhetz/gruvbox -URxvt.depth: 32 -URxvt.color0: [90]#282828 -URxvt.color1: [90]#cc241d -URxvt.color2: [90]#98971a -URxvt.color3: [90]#d79921 -URxvt.color4: [90]#458588 -URxvt.color5: [90]#b16286 -URxvt.color6: [90]#689d6a -URxvt.color7: [90]#a89984 -URxvt.color8: [90]#928374 -URxvt.color9: [90]#fb4934 -URxvt.color10: [90]#b8bb26 -URxvt.color11: [90]#fabd2f -URxvt.color12: [90]#83a598 -URxvt.color13: [90]#d3869b -URxvt.color14: [90]#8ec07c -URxvt.color15: [90]#ebdbb2 -URxvt.foreground: [90]#ebdbb2 -URxvt.background: [90]#282828 -URxvt.colorIT: [90]#8ec07c -URxvt.colorBD: [90]#d5c4a1 -URxvt.colorUL: [90]#83a598 -URxvt.scrollColor: [90]#504945 +URxvt.color0: #282828 +URxvt.color1: #cc241d +URxvt.color2: #98971a +URxvt.color3: #d79921 +URxvt.color4: #458588 +URxvt.color5: #b16286 +URxvt.color6: #689d6a +URxvt.color7: #a89984 +URxvt.color8: #928374 +URxvt.color9: #fb4934 +URxvt.color10: #b8bb26 +URxvt.color11: #fabd2f +URxvt.color12: #83a598 +URxvt.color13: #d3869b +URxvt.color14: #8ec07c +URxvt.color15: #ebdbb2 +URxvt.foreground: #ebdbb2 +URxvt.background: #000000 +URxvt.colorIT: #8ec07c +URxvt.colorBD: #d5c4a1 +URxvt.colorUL: #83a598 +URxvt.scrollColor: #504945 ! font config URxvt.font: xft:Noto Sans Mono:size=10:antialias=true, xft:Noto Sans CJK JP:size=10:antialias=true, xft:Noto Color Emoji:size=10:antialias=true diff --git a/.config/mutt/muttrc b/.config/mutt/muttrc @@ -11,10 +11,12 @@ set imap_user = "ftvda283@gmail.com" #フォルダ設定 set spoolfile = "+INBOX" -set record = "+[Gmail]/Sent Mail" +#set record = "+[Gmail]/Sent Mail" +unset record set trash = "+[Gmail]/Trash" set postponed = "+[Gmail]/Drafts" -mailboxes =INBOX =[Gmail]/Sent\ Mail =[Gmail]/Drafts =[Gmail]/Spam =[Gmail]/Trash +#mailboxes =INBOX =[Gmail]/Sent\ Mail =[Gmail]/Drafts =[Gmail]/Spam =[Gmail]/Trash +named-mailboxes "inbox" =INBOX "sent" =[Gmail]/Sent\ Mail "drafts" =[Gmail]/Drafts "spam" =[Gmail]/Spam "trash" =[Gmail]/Trash set sort=reverse-date #セキュリティ設定 diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim @@ -4,6 +4,14 @@ set encoding=utf-8 set number set shiftwidth=4 set tabstop=4 +set foldmethod=indent +set relativenumber +colorscheme desert + +noremap <c-h> <c-w><c-h> +noremap <c-j> <c-w><c-j> +noremap <c-k> <c-w><c-k> +noremap <c-l> <c-w><c-l> autocmd Filetype html inoremap ;1 <h1></h1><++><Esc>8hi autocmd Filetype html inoremap ;2 <h2></h2><++><Esc>8hi