This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. For stable version. | |
sudo add-apt-repository ppa:neovim-ppa/stable | |
2. For unstable version. | |
sudo add-apt-repository ppa:neovim-ppa/unstable | |
3. sudo apt update | |
4. sudo apt install neovim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add the repository | |
1. sudo add-apt-repository ppa:neovim-ppa/unstable | |
2. sudo apt-get update | |
3. sudo apt-get install neovim | |
4. Setup init.vim with "nvim" command. | |
5. Press : | |
6. After execute :call mkdir(stdpath('config'), 'p') | |
# this command create a directory to hold the init.vim file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. sudo pacman -S ntfs-3g | |
2. sudo fdisk -l | |
3. mkdir /mnt/myusb | |
4. sudo mount -t ntfs-3g /dev/sdb /mnt/myusb/ | |
Para desmontar: | |
5. sudo umount -t ntfs-3g /dev/sdb /mnt/myusb/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update the function "time.clock()" in pulseaudio.py file with "time.perf_counter()" | |
File location : /usr/lib/python3/dist-packages/kazam/pulseaudio/pulseaudio.py | |
RUN THIS COMMAND FROM TERMINAL | |
sudo sed -i 's/time.clock/time.perf_counter/g' /usr/lib/python3/dist-packages/kazam/pulseaudio/pulseaudio.py | |
'time.clock()' is deprecated from Python V3.3 and removed from Python v3.8 |
OlderNewer