Merge pull request #1 from nagymathev/main
necessary changes to improve life
This commit is contained in:
commit
b6531e9c48
3
init.lua
3
init.lua
|
@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
|
||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
-- You can also add relative line numbers, to help with jumping.
|
-- You can also add relative line numbers, to help with jumping.
|
||||||
-- Experiment for yourself to see if you like it!
|
-- Experiment for yourself to see if you like it!
|
||||||
-- vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
|
|
||||||
-- Enable mouse mode, can be useful for resizing splits for example!
|
-- Enable mouse mode, can be useful for resizing splits for example!
|
||||||
vim.opt.mouse = 'a'
|
vim.opt.mouse = 'a'
|
||||||
|
@ -279,6 +279,7 @@ require('lazy').setup({
|
||||||
|
|
||||||
require 'kickstart.plugins.lsp',
|
require 'kickstart.plugins.lsp',
|
||||||
|
|
||||||
|
require 'kickstart.plugins.autopairs',
|
||||||
{ -- Autoformat
|
{ -- Autoformat
|
||||||
'stevearc/conform.nvim',
|
'stevearc/conform.nvim',
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
|
|
@ -238,13 +238,19 @@ return {
|
||||||
-- plugins = {
|
-- plugins = {
|
||||||
-- pycodestyle = {
|
-- pycodestyle = {
|
||||||
-- ignore = {},
|
-- ignore = {},
|
||||||
-- maxLineLength = 120,
|
-- maxLineLength = 120,
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- }
|
-- }
|
||||||
-- }
|
-- }
|
||||||
-- },
|
-- },
|
||||||
-- rust_analyzer = {},
|
rust_analyzer = {
|
||||||
|
alias = 'rust-analyzer',
|
||||||
|
},
|
||||||
|
|
||||||
|
markdown_oxide = {
|
||||||
|
alias = 'markdown-oxide',
|
||||||
|
},
|
||||||
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
||||||
--
|
--
|
||||||
-- Some languages (like typescript) have entire language plugins that can be useful:
|
-- Some languages (like typescript) have entire language plugins that can be useful:
|
||||||
|
@ -253,7 +259,9 @@ return {
|
||||||
-- But for many setups, the LSP (`tsserver`) will work just fine
|
-- But for many setups, the LSP (`tsserver`) will work just fine
|
||||||
-- tsserver = {},
|
-- tsserver = {},
|
||||||
--
|
--
|
||||||
nixd = {},
|
['nil_ls'] = {
|
||||||
|
alias = 'nil',
|
||||||
|
},
|
||||||
bashls = {
|
bashls = {
|
||||||
alias = 'bash-language-server',
|
alias = 'bash-language-server',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue