0 کاربر و 4 مهمان درحال مشاهده موضوع.
نقلقول از: Mehr32 در 06 مهر 1400، 08:17 قظاین تنظیمات ویم منه کد: [انتخاب]:set number " Display line numbers on the left side:set ls=2 " This makes Vim show a status line even when only one window is shown:filetype plugin on " This line enables loading the plugin files for specific file types:set tabstop=4 " Set tabstop to tell vim how many columns a tab counts for. Linux kernel code expects each tab to be eight columns wide.:set expandtab " When expandtab is set, hitting Tab in insert mode will produce the appropriate number of spaces.:set softtabstop=4 " Set softtabstop to control how many columns vim uses when you hit Tab in insert mode. If softtabstop is less than tabstop and expandtab is not set, vim will use a combination of tabs and spaces to make up the desired spacing. If softtabstop equals tabstop and expandtab is not set, vim will always use tabs. When expandtab is set, vim will always use the appropriate number of spaces.:set shiftwidth=4 " Set shiftwidth to control how many columns text is indented with the reindent operations (<< and >>) and automatic C-style indentation. :setlocal foldmethod=indent " Set folding method:set t_Co=256 " makes Vim use 256 colors:set nowrap " Don't Wrap lines!:colorscheme molokai:set nocp " This changes the values of a LOT of options, enabling features which are not Vi compatible but really really nice:set clipboard=unnamed:set clipboard=unnamedplus:set autoindent " Automatic indentation:set cindent " This turns on C style indentation:set si " Smart indent:syntax enable " syntax highlighting:set showmatch " Show matching brackets:set hlsearch " Highlight in search"":set ignorecase " Ignore case in search:set noswapfile " Avoid swap files:set mouse=a " Mouse Integration:set cursorline " Highlight current line:set termbidi" auto complete for ( , " , ' , [ , { :inoremap ( ()<Left>:inoremap " ""<Left>:inoremap ` ``<Left>:inoremap ' ''<Left>:inoremap [ []<Left>:inoremap { {}<Left>" auto comment and uncooment with F6 and F7 key:autocmd FileType c,cpp,java,scala let b:comment_leader = '// ':autocmd FileType sh,ruby,python let b:comment_leader = '# ':autocmd FileType vim let b:comment_leader = '" ':noremap <silent> #6 :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR> " commenting line with F6:noremap <silent> #7 :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR> " uncommenting line with F7:map <F5> :!python3 ./% <CR>:noremap <silent> #3 :tabprevious<CR> " switch to previous tab with F3:noremap <silent> #4 :tabnext<CR> " switch to next tab with F2:map <F8> :setlocal spell! spelllang=en_us<CR> " check spelling with F8:set pastetoggle=<F2> " Paste mode toggle with F2 Pastemode disable auto-indent and bracket auto-compelation and it helps you to paste code fro elsewhere ."plugin" autocomplpop setting:set omnifunc=syntaxcomplete " This is necessary for acp plugin:let g:acp_behaviorKeywordLength = 1 " Length of keyword characters before the cursor, which are needed to attempt keyword completion" airline plugin setting:let g:airline_theme='minimalist' " set airline plugin theme:let g:airline#extensions#tabline#enabled = 1 " showing tabs :let g:airline_powerline_fonts = 1if !exists('g:airline_symbols') let g:airline_symbols = {} endif:helptags ~/.vim/pack/dist/start/vim-airline-themes/doclet g:airline_theme='dark'syntax onset mouse=a"set encoding=utf8set guifont=DroidSansMono\ Nerd\ Font\ 11let g:airline_powerline_fonts = 1"nerd" NERDTree plugin settisyntax onfiletype plugin indent onlet g:NERDTreeDirArrows=0let NERDTreeShowHidden=1:map <F9> :NERDTreeToggle<CR>"rr" noremap <F5> :! AsyncRun -raw python % <CR> :map <F10> :! pylint ./%<CR>:map <F12> :bw!<CR>این هم همینه توی گیتهابم https://github.com/mehr32/vimrc/blob/main/vimrcفقط پلاگین ها رو چطور برات بزارم ؟ گیتهاب میگه حجمش زیاده ویم میانبر های زیادی داره که میتونه سرعتت رو خیلی زیاد کنه می تونی توی ویکی > ویم هم پیدا کنیشون بهتر هم هست یکم وقب بزاری و اموزش ویم اقای امیر صمیمی رو توی سایتش یا اپارات پیدا کنی و ببینی تا خوب یاد بگیری راستی یادم رفت بگم این تنظیمات رو کپی کن و توی یک فایل متنی با نام vimrc. قرار بده توی هومت (چون اول اسمش نقطه داره پنهان میشه با کنترل+ اچ میتونی ببینیش با خود ویم هم میتونی ببینیش )و اینکه این تنظیمات کارایی مثل گذاشتن ( بعد از ) و... رو خودش میکنه و برای مدیریت فایل و پلاگین ها و تم باید همون پوشه ویم رو یک جوری برات بفرستم تا بزاری توی هوم بعد میتونی از کلید های میانبر من (مثل با اف نه مدیریت فایل کنار صفحه باز بشه) هم استفاده کنی ان اموزش رو که گفتم ببینی خودت هم می تونی تم و پلاگین نصب کنی و فایل تنظیمات رو بسته به نیازت تغییر بدیآقا خیلی ممنون تشکر واقعا نیازی نیست که پلاگین ها را ارسال کنید تا همین جا هم خیلی زحمت کشیدید من از همون تنظیمات استفاده میکنم و میرم با آموزش یکم سر و کله میزنم با vim و درستش میکنم.بازم ممنون
این تنظیمات ویم منه کد: [انتخاب]:set number " Display line numbers on the left side:set ls=2 " This makes Vim show a status line even when only one window is shown:filetype plugin on " This line enables loading the plugin files for specific file types:set tabstop=4 " Set tabstop to tell vim how many columns a tab counts for. Linux kernel code expects each tab to be eight columns wide.:set expandtab " When expandtab is set, hitting Tab in insert mode will produce the appropriate number of spaces.:set softtabstop=4 " Set softtabstop to control how many columns vim uses when you hit Tab in insert mode. If softtabstop is less than tabstop and expandtab is not set, vim will use a combination of tabs and spaces to make up the desired spacing. If softtabstop equals tabstop and expandtab is not set, vim will always use tabs. When expandtab is set, vim will always use the appropriate number of spaces.:set shiftwidth=4 " Set shiftwidth to control how many columns text is indented with the reindent operations (<< and >>) and automatic C-style indentation. :setlocal foldmethod=indent " Set folding method:set t_Co=256 " makes Vim use 256 colors:set nowrap " Don't Wrap lines!:colorscheme molokai:set nocp " This changes the values of a LOT of options, enabling features which are not Vi compatible but really really nice:set clipboard=unnamed:set clipboard=unnamedplus:set autoindent " Automatic indentation:set cindent " This turns on C style indentation:set si " Smart indent:syntax enable " syntax highlighting:set showmatch " Show matching brackets:set hlsearch " Highlight in search"":set ignorecase " Ignore case in search:set noswapfile " Avoid swap files:set mouse=a " Mouse Integration:set cursorline " Highlight current line:set termbidi" auto complete for ( , " , ' , [ , { :inoremap ( ()<Left>:inoremap " ""<Left>:inoremap ` ``<Left>:inoremap ' ''<Left>:inoremap [ []<Left>:inoremap { {}<Left>" auto comment and uncooment with F6 and F7 key:autocmd FileType c,cpp,java,scala let b:comment_leader = '// ':autocmd FileType sh,ruby,python let b:comment_leader = '# ':autocmd FileType vim let b:comment_leader = '" ':noremap <silent> #6 :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR> " commenting line with F6:noremap <silent> #7 :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR> " uncommenting line with F7:map <F5> :!python3 ./% <CR>:noremap <silent> #3 :tabprevious<CR> " switch to previous tab with F3:noremap <silent> #4 :tabnext<CR> " switch to next tab with F2:map <F8> :setlocal spell! spelllang=en_us<CR> " check spelling with F8:set pastetoggle=<F2> " Paste mode toggle with F2 Pastemode disable auto-indent and bracket auto-compelation and it helps you to paste code fro elsewhere ."plugin" autocomplpop setting:set omnifunc=syntaxcomplete " This is necessary for acp plugin:let g:acp_behaviorKeywordLength = 1 " Length of keyword characters before the cursor, which are needed to attempt keyword completion" airline plugin setting:let g:airline_theme='minimalist' " set airline plugin theme:let g:airline#extensions#tabline#enabled = 1 " showing tabs :let g:airline_powerline_fonts = 1if !exists('g:airline_symbols') let g:airline_symbols = {} endif:helptags ~/.vim/pack/dist/start/vim-airline-themes/doclet g:airline_theme='dark'syntax onset mouse=a"set encoding=utf8set guifont=DroidSansMono\ Nerd\ Font\ 11let g:airline_powerline_fonts = 1"nerd" NERDTree plugin settisyntax onfiletype plugin indent onlet g:NERDTreeDirArrows=0let NERDTreeShowHidden=1:map <F9> :NERDTreeToggle<CR>"rr" noremap <F5> :! AsyncRun -raw python % <CR> :map <F10> :! pylint ./%<CR>:map <F12> :bw!<CR>این هم همینه توی گیتهابم https://github.com/mehr32/vimrc/blob/main/vimrcفقط پلاگین ها رو چطور برات بزارم ؟ گیتهاب میگه حجمش زیاده ویم میانبر های زیادی داره که میتونه سرعتت رو خیلی زیاد کنه می تونی توی ویکی > ویم هم پیدا کنیشون بهتر هم هست یکم وقب بزاری و اموزش ویم اقای امیر صمیمی رو توی سایتش یا اپارات پیدا کنی و ببینی تا خوب یاد بگیری راستی یادم رفت بگم این تنظیمات رو کپی کن و توی یک فایل متنی با نام vimrc. قرار بده توی هومت (چون اول اسمش نقطه داره پنهان میشه با کنترل+ اچ میتونی ببینیش با خود ویم هم میتونی ببینیش )و اینکه این تنظیمات کارایی مثل گذاشتن ( بعد از ) و... رو خودش میکنه و برای مدیریت فایل و پلاگین ها و تم باید همون پوشه ویم رو یک جوری برات بفرستم تا بزاری توی هوم بعد میتونی از کلید های میانبر من (مثل با اف نه مدیریت فایل کنار صفحه باز بشه) هم استفاده کنی ان اموزش رو که گفتم ببینی خودت هم می تونی تم و پلاگین نصب کنی و فایل تنظیمات رو بسته به نیازت تغییر بدی
:set number " Display line numbers on the left side:set ls=2 " This makes Vim show a status line even when only one window is shown:filetype plugin on " This line enables loading the plugin files for specific file types:set tabstop=4 " Set tabstop to tell vim how many columns a tab counts for. Linux kernel code expects each tab to be eight columns wide.:set expandtab " When expandtab is set, hitting Tab in insert mode will produce the appropriate number of spaces.:set softtabstop=4 " Set softtabstop to control how many columns vim uses when you hit Tab in insert mode. If softtabstop is less than tabstop and expandtab is not set, vim will use a combination of tabs and spaces to make up the desired spacing. If softtabstop equals tabstop and expandtab is not set, vim will always use tabs. When expandtab is set, vim will always use the appropriate number of spaces.:set shiftwidth=4 " Set shiftwidth to control how many columns text is indented with the reindent operations (<< and >>) and automatic C-style indentation. :setlocal foldmethod=indent " Set folding method:set t_Co=256 " makes Vim use 256 colors:set nowrap " Don't Wrap lines!:colorscheme molokai:set nocp " This changes the values of a LOT of options, enabling features which are not Vi compatible but really really nice:set clipboard=unnamed:set clipboard=unnamedplus:set autoindent " Automatic indentation:set cindent " This turns on C style indentation:set si " Smart indent:syntax enable " syntax highlighting:set showmatch " Show matching brackets:set hlsearch " Highlight in search"":set ignorecase " Ignore case in search:set noswapfile " Avoid swap files:set mouse=a " Mouse Integration:set cursorline " Highlight current line:set termbidi" auto complete for ( , " , ' , [ , { :inoremap ( ()<Left>:inoremap " ""<Left>:inoremap ` ``<Left>:inoremap ' ''<Left>:inoremap [ []<Left>:inoremap { {}<Left>" auto comment and uncooment with F6 and F7 key:autocmd FileType c,cpp,java,scala let b:comment_leader = '// ':autocmd FileType sh,ruby,python let b:comment_leader = '# ':autocmd FileType vim let b:comment_leader = '" ':noremap <silent> #6 :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR> " commenting line with F6:noremap <silent> #7 :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR> " uncommenting line with F7:map <F5> :!python3 ./% <CR>:noremap <silent> #3 :tabprevious<CR> " switch to previous tab with F3:noremap <silent> #4 :tabnext<CR> " switch to next tab with F2:map <F8> :setlocal spell! spelllang=en_us<CR> " check spelling with F8:set pastetoggle=<F2> " Paste mode toggle with F2 Pastemode disable auto-indent and bracket auto-compelation and it helps you to paste code fro elsewhere ."plugin" autocomplpop setting:set omnifunc=syntaxcomplete " This is necessary for acp plugin:let g:acp_behaviorKeywordLength = 1 " Length of keyword characters before the cursor, which are needed to attempt keyword completion" airline plugin setting:let g:airline_theme='minimalist' " set airline plugin theme:let g:airline#extensions#tabline#enabled = 1 " showing tabs :let g:airline_powerline_fonts = 1if !exists('g:airline_symbols') let g:airline_symbols = {} endif:helptags ~/.vim/pack/dist/start/vim-airline-themes/doclet g:airline_theme='dark'syntax onset mouse=a"set encoding=utf8set guifont=DroidSansMono\ Nerd\ Font\ 11let g:airline_powerline_fonts = 1"nerd" NERDTree plugin settisyntax onfiletype plugin indent onlet g:NERDTreeDirArrows=0let NERDTreeShowHidden=1:map <F9> :NERDTreeToggle<CR>"rr" noremap <F5> :! AsyncRun -raw python % <CR> :map <F10> :! pylint ./%<CR>:map <F12> :bw!<CR>
نقلقول از: Mehr32 در 05 مهر 1400، 02:09 بظنقلقول از: sajadspeed در 05 مهر 1400، 12:57 بظنقلقول از: Mehr32 در 05 مهر 1400، 12:49 بظویم !!!!!!تمام اگه میخوای یک ادیتور کامل تیدیلش کنی بگو تا تنظیمات مال خودم رو بدم تا حال کنیخوب آخه برادر میگم میخوام یه فایل منیجر داشته باشم کنار ادیتور بعد vim توی محیط ترمیناله امکان گذاشتن یک فایل منیجر کنار فایل باز هست؟بهتون گفتم ادیتور کامله پلاگین ها و تنظیمات رو بهتون بدم با فایل منیجر و... است و کاملهآهان تشکر بله اگه فایل تنظیمات بدید که ممنون میشم
نقلقول از: sajadspeed در 05 مهر 1400، 12:57 بظنقلقول از: Mehr32 در 05 مهر 1400، 12:49 بظویم !!!!!!تمام اگه میخوای یک ادیتور کامل تیدیلش کنی بگو تا تنظیمات مال خودم رو بدم تا حال کنیخوب آخه برادر میگم میخوام یه فایل منیجر داشته باشم کنار ادیتور بعد vim توی محیط ترمیناله امکان گذاشتن یک فایل منیجر کنار فایل باز هست؟بهتون گفتم ادیتور کامله پلاگین ها و تنظیمات رو بهتون بدم با فایل منیجر و... است و کامله
نقلقول از: Mehr32 در 05 مهر 1400، 12:49 بظویم !!!!!!تمام اگه میخوای یک ادیتور کامل تیدیلش کنی بگو تا تنظیمات مال خودم رو بدم تا حال کنیخوب آخه برادر میگم میخوام یه فایل منیجر داشته باشم کنار ادیتور بعد vim توی محیط ترمیناله امکان گذاشتن یک فایل منیجر کنار فایل باز هست؟
ویم !!!!!!تمام اگه میخوای یک ادیتور کامل تیدیلش کنی بگو تا تنظیمات مال خودم رو بدم تا حال کنی
روی لینوکس که نمیشه متن ویرایش کرد، ولی برای گنو/لینوکس در حالت متنی که ویم و ایمکس عالین. در محیط گرافیکی هم احتمالاً چیزی مثل جینی عالیه براتون.ویراش: خب مثل این که دیر پیام دادم و دوستان گفته بودن اینها رو
نقلقول از: Mehr32 در 05 مهر 1400، 12:49 بظویم !!!!!!تمام اگه میخوای یک ادیتور کامل تیدیلش کنی بگو تا تنظیمات مال خودم رو بدم تا حال کنیمن جی ویم نصب کردم هیچی ندارهانگار با ترمینال کار می کنیدر حال حاضر از کودیوم استفاده می کنم خوشبختانه خوبه
نقلقول از: Mtsaghafi در 26 آبان 1400، 05:48 بظنقلقول از: Mehr32 در 05 مهر 1400، 12:49 بظویم !!!!!!تمام اگه میخوای یک ادیتور کامل تیدیلش کنی بگو تا تنظیمات مال خودم رو بدم تا حال کنیمن جی ویم نصب کردم هیچی ندارهانگار با ترمینال کار می کنیدر حال حاضر از کودیوم استفاده می کنم خوشبختانه خوبهنه دیگه زود قضاوت نکن هیچ وقت برید توی سایت اپارات یا سایت خود اقای علیرضا امیر صمیمی و اموزش ویمشون رو ببینید نظرتون عوض میشه اگه مشکلی داشتید بهم پیام بدید