mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-09 17:08:06 +01:00
tsserver, trick mason.nvim
This commit is contained in:
parent
30620d5b2c
commit
843069b691
4 changed files with 10 additions and 2 deletions
|
@ -3,6 +3,7 @@ local lsp = require("lsp-zero")
|
|||
lsp.preset("recommended")
|
||||
|
||||
lsp.ensure_installed({
|
||||
"tsserver",
|
||||
"zls",
|
||||
"lua_ls",
|
||||
"cmake",
|
||||
|
|
2
.local/bin/npm
Executable file
2
.local/bin/npm
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
pnpm $@
|
7
.zshrc
7
.zshrc
|
@ -1,5 +1,5 @@
|
|||
# If you come from bash you might have to change your $PATH.
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
# Path to your oh-my-zsh installation.
|
||||
export ZSH="$HOME/.oh-my-zsh"
|
||||
|
@ -109,3 +109,8 @@ function pacman {
|
|||
command pacman "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
# pnpm
|
||||
export PNPM_HOME="/home/hyro/.local/share/pnpm"
|
||||
export PATH="$PNPM_HOME:$PATH"
|
||||
# pnpm end
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
GRUB_DEFAULT="0"
|
||||
GRUB_TIMEOUT="0"
|
||||
GRUB_DISTRIBUTOR="Artix"
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="quiet nvidia_drm.modeset=1"
|
||||
GRUB_CMDLINE_LINUX="net.ifnames=0"
|
||||
|
||||
# Preload both GPT and MBR modules so that they are not missed
|
||||
|
|
Loading…
Reference in a new issue