<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nishu Murmu</title>
    <description>The latest articles on DEV Community by Nishu Murmu (@nishumurmu).</description>
    <link>https://dev.to/nishumurmu</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F718069%2Fd83f6174-6c87-40b9-a4a9-10e95179ecbb.jpeg</url>
      <title>DEV Community: Nishu Murmu</title>
      <link>https://dev.to/nishumurmu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nishumurmu"/>
    <language>en</language>
    <item>
      <title>My Fish Shell with tmux setup for Linux.</title>
      <dc:creator>Nishu Murmu</dc:creator>
      <pubDate>Mon, 24 Jan 2022 17:58:28 +0000</pubDate>
      <link>https://dev.to/nishumurmu/my-fish-shell-with-tmux-setup-for-linux-16e7</link>
      <guid>https://dev.to/nishumurmu/my-fish-shell-with-tmux-setup-for-linux-16e7</guid>
      <description>&lt;p&gt;I recently transitioned from windows to Linux environment (Fedora 35) for various reasons. As a new Linux user I got to know that I was required to use terminal a lot in Linux environment. So I thought why not setup my terminal nice and cool looking with all the glyphs and icons, cause I'll be spending most of time there during my workflow. So this is my setup which I came for now. Here's how you can setup your fish terminal (If you want to!)&lt;/p&gt;




&lt;h2&gt;
  
  
  Fish Shell setup
&lt;/h2&gt;

&lt;p&gt;1.Download the &lt;a href="https://fishshell.com/"&gt;&lt;strong&gt;fish terminal&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I use fish terminal cause it's very fast and user-friendly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.Download &lt;em&gt;omf&lt;/em&gt; or &lt;a href="https://github.com/oh-my-fish/oh-my-fish"&gt;&lt;strong&gt;oh-my-fish&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A Fish shell framework helps you to extend and modify your terminal&lt;/li&gt;
&lt;li&gt;Install any terminal theme you want, you have a look at this &lt;a href="https://github.com/oh-my-fish/oh-my-fish/blob/master/docs/Themes.md"&gt;&lt;strong&gt;readme.md&lt;/strong&gt;&lt;/a&gt;, there are all the themes shown, choose anyone you like and type this command -
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;omf install theme &amp;lt;theme name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;3.Download &lt;a href="https://the.exa.website/"&gt;&lt;strong&gt;exa&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Modern improved file lister for terminal&lt;/li&gt;
&lt;li&gt;after installing exa open &lt;code&gt;fish.config&lt;/code&gt; file located in &lt;code&gt;~/.config/fish/&lt;/code&gt; folder and add this following lines of code -
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;if type -q exa
  alias ll "exa -l -g --icons"
  alias lla "ll -a"
end
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;4.Download any &lt;a href="https://www.nerdfonts.com/font-downloads"&gt;&lt;strong&gt;Nerd fonts&lt;/strong&gt;&lt;/a&gt; for all the icons and glyphs and install it in your system.&lt;br&gt;
&lt;br&gt;&lt;br&gt;
&lt;em&gt;After following this steps you would have the end results&lt;/em&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  tmux setup
&lt;/h2&gt;

&lt;p&gt;1.Download and install&lt;a href="https://powerline.readthedocs.io/en/master/index.html"&gt; &lt;strong&gt;powerline&lt;/strong&gt;&lt;/a&gt;, &lt;a href="https://github.com/powerline/fonts"&gt;&lt;strong&gt;powerline-fonts&lt;/strong&gt;&lt;/a&gt; and &lt;a href="https://github.com/erikw/tmux-powerline"&gt;&lt;strong&gt;tmux-powerline&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
2.Create a file named &lt;code&gt;.tmux.conf&lt;/code&gt; in your root directory and add the following lines of code -&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;set -g history-limit 10000
unbind C-b
set -g prefix C-a

set -g mouse on

unbind r
bind r source-file ~/.tmux.conf \; display "Reloaded ~/.tmux.conf"

set -g xterm-keys on

bind R refresh-client

set-window-option -g mode-keys vi

set-option -sa terminal-overrides ",xterm*:Tc"

set-option -g focus-events on

#Splitting panes
unbind v
unbind h

unbind % # Split vertically
unbind '"' # Split horizontally

bind v split-window -h -c "#{pane_current_path}"
bind h split-window -v -c "#{pane_current_path}"

#navigating panes
bind -n C-h select-pane -L
bind -n C-j select-pane -D
bind -n C-k select-pane -U
bind -n C-l select-pane -R

# Visual Activity Monitoring between windows
setw -g monitor-activity on
set -g visual-activity on


# Show tmux positions in titles
set -g set-titles on

# statusbar
set-option -g status on
set-option -g status-interval 2
set-option -g status-left-length 60
set-option -g status-right-length 90

set-option -g status-left "#(~/Build/tmux-powerline/powerline.sh left)"
set-option -g status-right "#(~/Build/tmux-powerline/powerline.sh right)"
set-hook -g session-created 'run-shell "~/Build/tmux-powerline/powerline.sh init"' # prettifies the window-status segments
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;3.Change the terminal colors settings to xterm.&lt;/p&gt;




&lt;h4&gt;
  
  
  Any suggestions are welcomed 🙌
&lt;/h4&gt;

</description>
      <category>linux</category>
    </item>
    <item>
      <title>My Neovim Config Setup for Linux.</title>
      <dc:creator>Nishu Murmu</dc:creator>
      <pubDate>Sun, 23 Jan 2022 18:51:31 +0000</pubDate>
      <link>https://dev.to/nishumurmu/my-neovim-config-setup-for-linux-environment-211</link>
      <guid>https://dev.to/nishumurmu/my-neovim-config-setup-for-linux-environment-211</guid>
      <description>&lt;h3&gt;
  
  
  &lt;em&gt;This config is used for mainly web development developed completely in Lua language.&lt;/em&gt;
&lt;/h3&gt;

&lt;p&gt;1.Download and Install &lt;a href="https://neovim.io/"&gt;Neovim&lt;/a&gt;&lt;br&gt;
2.Clone this repository&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://github.com/nishu-murmu/dotfiles.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;3.Remove &lt;code&gt;/nvim&lt;/code&gt; folder from this repository that you cloned and paste in your &lt;code&gt;/.config&lt;/code&gt; folder if you're in linux/OSX or paste it in your &lt;code&gt;~/AppData/Local/&lt;/code&gt; folder.&lt;br&gt;
4.Open Neovim and wait for Packer to install all the plugins then type &lt;code&gt;:checkhealth&lt;/code&gt; command.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--DsnUHtfZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/h66mpnyb1k78wvx2d0tj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--DsnUHtfZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/h66mpnyb1k78wvx2d0tj.png" alt="checkhealth" width="880" height="80"&gt;&lt;/a&gt;&lt;br&gt;
5.If you face any errors while &lt;code&gt;:checkhealth&lt;/code&gt;, that is because you haven't installed support for python and Neovim.&lt;br&gt;
You need to install it gloabally so that it is in your path.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EGzzsjMZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x52qb4zz7znhap7uq2gq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EGzzsjMZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x52qb4zz7znhap7uq2gq.png" alt="python" width="880" height="129"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For python support&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install pynvim
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For Neovim support&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm install -g neovim
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;P.S. Any suggestions are welcomed. 👐&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>opensource</category>
      <category>linux</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
