Difference between revisions of "Switching over to LMDE"

From The TinkerNet Wiki
Jump to navigation Jump to search
Line 34: Line 34:
 
If you tend to use vim via sudo a lot... (duh... Who doesn't?)
 
If you tend to use vim via sudo a lot... (duh... Who doesn't?)
  
* <code>vim ~root/.vimrc</code>
+
* <code>sudo vim ~root/.vimrc</code>

Revision as of 20:36, 4 April 2021

So...

Linux Mint is based on Ubuntu & Ubuntu is based on Debian.

Ubuntu is slowly trying to turn into a combination of Windows & MacOS...

Ick!

LMDE is a version of Linux Mint without the Ubuntu step.

Seems promising.

BUT, There are some oddities

Gnome Terminal

For some odd reason, the default keyboard shortcuts for the terminal don't actually all work.

Solution

Fire up the terminal, then select Edit / Preferences in the menus. Then select the Shortcuts tab. Click twice (NOT double-click) on the Shortcut Key you want to fix, then re-define it to either the same as it was (or something else if you wish).

vim

(as installed on LMDE) has mouse weirdness. Selecting text with the mouse automatically enter visual mode. This prevents useful things like using the mouse to copy/paste while editing in the terminal. (Visual Mode is stupid...)

Solution

Either enter:

  • :set mouse-=a

during an editing session, or even better, put it (without the leading colon) in your ~/.vimrc file. (create the .vimrc file if it's not already there...)

  • vim ~/.vimrc
    • set mouse-=a

If you tend to use vim via sudo a lot... (duh... Who doesn't?)

  • sudo vim ~root/.vimrc