config
This commit is contained in:
parent
a15cac9599
commit
c6d975064d
2 changed files with 4 additions and 0 deletions
1
bashrc
1
bashrc
|
|
@ -25,3 +25,4 @@ eval "$(~/.rbenv/bin/rbenv init - bash)"
|
||||||
alias vim=nvim
|
alias vim=nvim
|
||||||
export EDITOR=nvim
|
export EDITOR=nvim
|
||||||
export TERM='xterm-256color'
|
export TERM='xterm-256color'
|
||||||
|
|
||||||
|
|
|
||||||
3
init.lua
3
init.lua
|
|
@ -72,6 +72,8 @@ require("lazy").setup({
|
||||||
"nvim-lualine/lualine.nvim",
|
"nvim-lualine/lualine.nvim",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
require("fidget").setup({})
|
||||||
|
|
||||||
-- Vim options
|
-- Vim options
|
||||||
vim.wo.number = true
|
vim.wo.number = true
|
||||||
vim.o.wrap = false
|
vim.o.wrap = false
|
||||||
|
|
@ -235,6 +237,7 @@ end, keymap_opts)
|
||||||
|
|
||||||
-- LSP Config
|
-- LSP Config
|
||||||
require("lspconfig").tsserver.setup({})
|
require("lspconfig").tsserver.setup({})
|
||||||
|
require("lspconfig").gdscript.setup({})
|
||||||
require("lspconfig").ruby_ls.setup({
|
require("lspconfig").ruby_ls.setup({
|
||||||
cmd = { "bundle", "exec", "ruby-lsp" },
|
cmd = { "bundle", "exec", "ruby-lsp" },
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue