1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | " set UTF-8 encoding set enc=utf-8 set fenc=utf-8 set termencoding=utf-8 " disable vi compatibility set nocompatible " use indentation of previous line set autoindent " use intelligent indentation for C set smartindent " configure tabwidth and insert spaces instead of tabs set tabstop=4 " tab width is 4 spaces set shiftwidth=4 " indent also with 4 spaces set expandtab " expand tabs to spaces " wrap lines at 120 chars. set textwidth=120 " turn syntax highlighting on set t_Co=256 syntax on " highlight matching braces set showmatch |
Vim: минимальный .vimrc для удобного редактирования С/С++ кода
Linux: найти все файлы, измененные за определенный период времени
Найти файлы в текущей директории, измененные 28 октября 2014 года
1 | find . -newermt "2014-10-28 00:00:00" ! -newermt "2014-10-29 00:00:00" |
Подписаться на:
Сообщения
(
Atom
)