vimとemacs_私のVim Emacsとその他のプロファイル


vimとemacs
My .vimrc .emacc files can be downloaded from here: https://github.com/zma/config_files
私のvimrc .Emaccファイルはここからダウンロードできます.https://github.com/zma/config_files
My text editors are especially configured for source code such as C/C++/shell editing. I prefer to use spaces instead of tab. And my favourite tab size is 4.
私のテキストエディタはC/C++/shell編集などのソースコードに特化しています.タブではなくスペースを使うのが好きです.私の一番好きなラベルの大きさは4です.
Some vimrc parameters and the comments are listed here. Details and the updated configuration files please refer to the git repository.
ここにはvimrcパラメータとコメントがいくつかリストされています.詳細と更新されたプロファイルはgitリポジトリを参照してください.
The .vimrc:
.vimrc:
set number " show line number

set backup " keep a backup file
set backupdir=~/.vibackup " keep all backup files in one central dir
set backupcopy=yes

set tabstop=4
set shiftwidth=4
set expandtab

set autoindent " always set autoindenting on
set cindent " indent c code
syntax on

set incsearch " do incremental searching
set hlsearch " high light the search content

set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set showcmd " display incomplete commands

This xstartup configuration files makes VNC to use gnome as the desktop environment of remote server instead of the default (twm).
このxstartupプロファイルにより、VNCはgnomeをデフォルト(twm)ではなくリモートサーバのデスクトップ環境として使用できます.
The ~/.vnc/xstartup file:
〜/.vnc/xstartupファイル:
    #!/bin/sh
    
    # Uncomment the following two lines for normal desktop:
    # unset SESSION_MANAGER
    # exec /etc/X11/xinit/xinitrc
    
    [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
    [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
    xsetroot -solid grey
    vncconfig -iconic &

    #xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
    #twm &
    gnome-session

翻訳:https://www.systutorials.com/my-vim-emacs-configuration-files/
vimとemacs