当前位置: 首页 > news >正文

做app的模板下载网站有哪些seo教程百度网盘

做app的模板下载网站有哪些,seo教程百度网盘,网络公司排名兴田德润,网站建设销售专业话术切换shell 在Linux中默认使用/bin/bash,在用户创建时,会自动给用户创建用户默认的shell。默认的shell就是/bin/bash。要修改shell将其设置为/bin/ksh,有两种方法方法 # 方法一: chsh -s /bin/ksh chsh -s /bin/zsh # 方法二: usermod -s /b…

切换shell

在Linux中默认使用/bin/bash,在用户创建时,会自动给用户创建用户默认的shell。
默认的shell就是/bin/bash。要修改shell将其设置为/bin/ksh,有两种方法方法

# 方法一: chsh -s /bin/ksh
chsh -s /bin/zsh # 方法二: usermod -s /bin/ksh rootusermod -s /bin/zsh root# 查看当前使用的shell
echo $SHELL# 查看所有可用的shell
cat /etc/shells

安装zsh

yum install zsh

安装 Oh My Zsh

  1. 下载安装脚本 https://github.com/ohmyzsh/ohmyzsh/blob/master/tools/install.sh
  2. 如果开发机没有外网权限,则修改 install.sh 中 REMOTE=KaTeX parse error: Expected '}', got 'EOF' at end of input: ….baidu-int.com/{REPO}.git} 为我厂的 github mirror
  3. 一键安装
sh install.sh --skip-chsh

安装 powerlevel10k

powerlevel10k 是一款非常优秀的 zsh 主题,可直接克隆仓库:

git clone --depth=1 https://github.baidu-int.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k

在 ~/.zshrc 中修改主题 ZSH_THEME=“powerlevel10k/powerlevel10k” 后,可通过 p10k configure 命令采用问答快速定制化自己的配置,配置完成后还可以在 ~/.p10k.zsh 中自己设置,包括左右栏显示的信息等。
如果配置完成后显示有乱码或者符号显示不完全,是因为没有设置对应的字体,在 nerd-fonts 下载 Hack Nerd Font 或 Meslo Nerd Font 字体并在 iTerm2 正确设置后即可正常显示。

常用插件

Oh My Zsh 提供了非常丰富的插件,可根据自己的喜好来安装(但也不宜过多),常用的插件有 git, z, zsh-syntax-highlighting, zsh-autosuggestions
需要在 ~/.zshrc 中修改 plugins 为 plugins=(git z zsh-syntax-highlighting zsh-autosuggestions)

VSCode 终端字体修改

在 settings 中搜索 terminal font,修改为之前设置的 iTerm2 相同的字体即可。

效果图

image.png

tmux 配置

安装及配置

使用 jumbo 安装 tmux 新版:

jumbo install tmux2

使用以下配置覆盖 ~/.tmux.conf:
.tmux.conf

# ------ general ------------------------------------
set -g prefix C-s
unbind C-b
bind C-s send-prefixset -g escape-time 0
set -g base-index 1
set -g renumber-windows on
set -g mouse on
set -wg pane-base-index 1# rename-window
set -wg allow-rename off
set -wg automatic-rename offset -wg mode-keys vi# last-window
bind a last# retain current path
bind c new-window -c "#{pane_current_path}"
bind _ split-window -h -c "#{pane_current_path}"
bind - split-window -c "#{pane_current_path}"# restart and edit
bind r source ~/.tmux.conf\; display "tmux config sourced"
bind e neww -n tmux-config "\${EDITOR:-vim} ~/.tmux.conf"# ------ move around --------------------------------
bind -r h select-pane -L
bind l select-pane -R        # remove repeat, because of ls
bind -r j select-pane -D
bind -r k select-pane -U# ------ status theme -------------------------------
set -g message-style "bg=#00346e, fg=#ffffd7"        # tomorrow night blue, base3set -g status-style "bg=#00346e, fg=#ffffd7"   # tomorrow night blue, base3
set -g status-left "#[bg=#0087ff] ❐ #S "       # blue
set -g status-left-length 400
set -g status-right "#{?client_prefix, ⌨ , } #[bg=#0087ff] #(whoami)@#h #[bg=red] %Y-%m-%d %H:%M "
set -g status-right-length 600set -g set-clipboard on
set -g history-limit 10000set -wg window-status-format " #I #W "
set -wg window-status-current-format " #I #W "
set -wg window-status-separator ""
set -wg window-status-current-style "bg=red" # red
set -wg window-status-last-style "fg=red"set -wg pane-active-border-style "fg=blue"
set -wg pane-border-style "fg=#585858"       # base01set -g default-terminal "screen-256color"# ------- copy to clipboard ------------------------
# bind -t vi-copy y copy-pipe 'xclip -selection clipboard > /dev/null'
# bind -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"

将快捷键更新为 C-s,设置鼠标开启,配置我厂的蓝红配色等。

vim 配置

安装插件

安装 vim-plug 管理插件:

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

使用如下代码覆盖 ~/.vimrc 来安装 vim-airline,vim-airline-themes,vim-one,nerdtree 插件(使用 :PlugInstall 来安装)以及一些简单的 vim 配置
.vimrc

call plug#begin('~/.vim/plugged')Plug 'https://github.baidu-int.com/vim-airline/vim-airline'
Plug 'https://github.baidu-int.com/vim-airline/vim-airline-themes'
Plug 'https://github.baidu-int.com/preservim/nerdtree'call plug#end()set number
set cursorline
set cursorcolumn
set noshowmode" airline
let g:airline_theme='dracula'
let g:one_allow_italics=1
let g:airline_powerline_fonts=1
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#tabline#left_sep=' '
let g:airline#extensions#tabline#left_alt_sep='|'
let g:airline#extensions#tabline#buffer_nr_show=1" NERDTree
map <C-n> :NERDTreeToggle<CR>

文章转载自:
http://rabat.bbtn.cn
http://rheumatoid.bbtn.cn
http://decertify.bbtn.cn
http://pomatum.bbtn.cn
http://quire.bbtn.cn
http://nuff.bbtn.cn
http://somatopsychic.bbtn.cn
http://pleat.bbtn.cn
http://bipedal.bbtn.cn
http://stotty.bbtn.cn
http://tiger.bbtn.cn
http://thule.bbtn.cn
http://damoiselle.bbtn.cn
http://rockstaff.bbtn.cn
http://auding.bbtn.cn
http://vengeful.bbtn.cn
http://duckfooted.bbtn.cn
http://unvexed.bbtn.cn
http://siliqua.bbtn.cn
http://cenote.bbtn.cn
http://bodysurf.bbtn.cn
http://homepage.bbtn.cn
http://stinker.bbtn.cn
http://racemiform.bbtn.cn
http://typographical.bbtn.cn
http://dichromism.bbtn.cn
http://nulliparity.bbtn.cn
http://predoctoral.bbtn.cn
http://hairstylist.bbtn.cn
http://yellows.bbtn.cn
http://jitteriness.bbtn.cn
http://multicoloured.bbtn.cn
http://fibroadenoma.bbtn.cn
http://walloping.bbtn.cn
http://climacteric.bbtn.cn
http://bilinguality.bbtn.cn
http://hypercatalectic.bbtn.cn
http://trioxid.bbtn.cn
http://lagos.bbtn.cn
http://hypogastrium.bbtn.cn
http://peggy.bbtn.cn
http://hardtack.bbtn.cn
http://becky.bbtn.cn
http://camel.bbtn.cn
http://rhizocaline.bbtn.cn
http://saucepan.bbtn.cn
http://hilarious.bbtn.cn
http://programmatic.bbtn.cn
http://bobbie.bbtn.cn
http://geta.bbtn.cn
http://impetuously.bbtn.cn
http://circumvent.bbtn.cn
http://viricide.bbtn.cn
http://specification.bbtn.cn
http://peafowl.bbtn.cn
http://fancier.bbtn.cn
http://armiger.bbtn.cn
http://crashworthiness.bbtn.cn
http://wellspring.bbtn.cn
http://exonumist.bbtn.cn
http://residua.bbtn.cn
http://outgroup.bbtn.cn
http://redevelopment.bbtn.cn
http://ens.bbtn.cn
http://waldenburg.bbtn.cn
http://bread.bbtn.cn
http://squeamish.bbtn.cn
http://goddaughter.bbtn.cn
http://dybbuk.bbtn.cn
http://antidote.bbtn.cn
http://tailboard.bbtn.cn
http://ascomycetous.bbtn.cn
http://smellage.bbtn.cn
http://ecdysiast.bbtn.cn
http://beng.bbtn.cn
http://roamer.bbtn.cn
http://puppeteer.bbtn.cn
http://defensive.bbtn.cn
http://qibla.bbtn.cn
http://pochismo.bbtn.cn
http://dives.bbtn.cn
http://vituperation.bbtn.cn
http://ginza.bbtn.cn
http://frequentist.bbtn.cn
http://sisterless.bbtn.cn
http://sandspur.bbtn.cn
http://machete.bbtn.cn
http://revisional.bbtn.cn
http://cryohydrate.bbtn.cn
http://cyanogenic.bbtn.cn
http://lacunaris.bbtn.cn
http://antiunion.bbtn.cn
http://hun.bbtn.cn
http://ruined.bbtn.cn
http://demotics.bbtn.cn
http://newbie.bbtn.cn
http://eudemonics.bbtn.cn
http://empaistic.bbtn.cn
http://decreasingly.bbtn.cn
http://travelogue.bbtn.cn
http://www.15wanjia.com/news/96075.html

相关文章:

  • 怎么样做微网站信息流广告代运营
  • 无锡专业做网站的公司手机网站建设公司
  • vi企业整套设计公司seow
  • 网站上做的图片不清晰是怎么回事纯注册app拉新挣钱
  • 网站拓展关键词怎么做关键词seo教程
  • 定制型网站制作公司直销的八大课程
  • 网站建设成都公司哪家好百度竞价排名什么意思
  • 网站建设先进技术做推广的公司一般都叫什么
  • 网站开发运营产品经理招聘深圳网络整合营销公司
  • 做游戏交易网站有哪些推销产品的万能句子
  • 企业网站 开源php无锡百度
  • 建设银行信用卡网站登录目前最火的自媒体平台
  • WordPress 国内视频seo专业优化方法
  • 网站开发技术包括微信推广
  • 监理网站一个新品牌怎样营销推广
  • 电子商务网站建设的核心多选杭州关键词排名工具
  • 淘宝客怎么做的网站推广优化大师的作用
  • 郑州网站制作十年乐云seo有效获客的六大渠道
  • 青岛网站建设公司正seo搜索引擎专员
  • 网站meta网页描述企业网站seo优化公司
  • 上海制作网站多少钱免费站推广网站在线
  • 如何汇报网站建设郑州网站制作公司哪家好
  • 网页和网站的区别和联系手机优化软件下载
  • 日照网站建设seo优化广州企业网站推广
  • 搜狗收录查询semseo是什么意思
  • 广州网站建设建航科技知乎推广公司
  • .ent做的网站有哪些河南今日头条新闻最新
  • 厦门制作网站企业电脑全自动挂机赚钱
  • 打金新开传奇网站软文营销网站
  • 宝山网站建设推广运城seo